/* ============================================================
   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);
  --nav-h: 72px;
}

* { box-sizing: border-box; }
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;
  position: relative;
  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);
  white-space: nowrap;
  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;
}
/* CTA link shown only inside the mobile dropdown */
.nav__link--cta { display: none; }

/* ── Nav dropdown (Soluții) ──────────────────────────── */
.nav__has-sub { position: relative; display: flex; }
.nav__link--sub { display: inline-flex; align-items: center; gap: 4px; }
.nav__caret { width: 14px; height: 14px; transition: transform 0.18s ease; }
.nav__has-sub:hover .nav__caret { transform: rotate(180deg); }
.nav__sub {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--c-rule);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 1px 2px rgba(10,31,51,0.04), 0 24px 50px -18px rgba(10,31,51,0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 60;
}
.nav__has-sub::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__sub-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.15s ease;
}
.nav__sub-link:hover { background: var(--c-bg-2); }
.nav__sub-t { display: block; font-size: 15px; font-weight: 600; color: var(--c-ink); }
.nav__sub-d { display: block; margin-top: 3px; font-size: 13px; line-height: 1.4; color: var(--c-muted); }

/* ── Mega dropdown (Funcționalități — toate zonele) ────── */
.nav__sub--mega {
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 6px;
}
.nav__sub--mega .nav__sub-link--feat { grid-column: 1 / -1; }
.nav__sub-head {
  grid-column: 1 / -1;
  padding: 10px 14px 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted-2);
}
.nav__sub-link--compact {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
}
.nav__sub-link--compact .nav__sub-t { font-size: 14px; font-weight: 500; }
.nav__sub-num {
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--c-muted-2);
  min-width: 18px;
}
@media (max-width: 1150px) {
  .nav__sub--mega { min-width: 0; grid-template-columns: 1fr; gap: 0; }
}

.nav__cta .btn { white-space: nowrap; }

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

/* Hamburger — hidden on desktop */
.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  border: 1px solid var(--c-rule);
  background: #fff;
  color: var(--c-ink);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.nav__burger svg { width: 22px; height: 22px; display: block; }
.nav__burger .icon-close { display: none; }

/* Below this width the full link row no longer fits on one line — switch to
   the burger menu instead of letting the bar overflow. */
@media (max-width: 1150px) {
  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-left: 0;
    background: #fff;
    border: 1px solid var(--c-rule);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 1px 2px rgba(10,31,51,0.04), 0 24px 50px -18px rgba(10,31,51,0.28);
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .nav__links { display: flex; }
  .nav__link {
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 16px;
  }
  .nav__burger { display: inline-flex; }
  body.nav-open .nav__burger .icon-open { display: none; }
  body.nav-open .nav__burger .icon-close { display: block; }
  /* Keep the bar clean on mobile: only logo + burger. CTAs live in the menu. */
  .nav__cta .btn--ghost,
  .nav__cta .btn--ink { display: none; }
  .nav__links .nav__link--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    background: var(--c-ink);
    color: #fff;
  }
  .nav__links .nav__link--cta:hover { background: var(--c-ink); }
  .nav__links .nav__link--cta .btn__icon svg { width: 16px; height: 16px; display: block; }
  /* Dropdown becomes a tap-to-expand accordion on mobile */
  .nav__has-sub { display: block; }
  .nav__has-sub > .nav__link--sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .nav__caret {
    display: block;
    width: 18px;
    height: 18px;
    color: var(--c-muted);
    transition: transform 0.2s ease;
  }
  .nav__has-sub.is-open > .nav__link--sub .nav__caret { transform: rotate(180deg); }
  /* Submenu collapsed by default; revealed only when its parent is open */
  .nav__sub,
  .nav__has-sub:hover .nav__sub,
  .nav__has-sub:focus-within .nav__sub {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    border: none;
    box-shadow: none;
    padding: 2px 0 4px 10px;
    margin: 2px 0 4px 6px;
    border-left: 2px solid var(--c-rule);
    transition: none;
  }
  .nav__has-sub.is-open > .nav__sub { display: block; }
  .nav__has-sub.is-open > .nav__sub--mega { display: grid; }
  .nav__sub-link { padding: 10px 12px; border-radius: 12px; }
}

/* ============================================================
   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; }

/* ============================================================
   DESPRE NOI
   ============================================================ */
.about{display:grid;grid-template-columns:1.05fr 0.95fr;gap:64px;align-items:center}
.about__lbl{font-family:"Manrope",sans-serif;font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--c-blue);margin-bottom:20px}
.about__h{font-size:var(--t-h2);font-weight:600;line-height:1.1;letter-spacing:-0.02em;margin-bottom:24px}
.about__h em{font-style:normal;color:var(--c-blue)}
.about__p{color:var(--c-muted);font-size:16px;line-height:1.65;margin-bottom:18px;max-width:56ch}
.about__txt .btn{margin-top:10px}
.about__media{margin:0}
.about__media img{width:100%;height:auto;display:block;border-radius:24px;border:1px solid var(--c-rule)}
.about__media figcaption{font-size:13px;color:var(--c-muted);margin-top:14px}
@media (max-width: 900px){.about{grid-template-columns:1fr;gap:36px}}


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

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 76vh, 820px);
  margin-top: calc(-1 * var(--nav-h, 72px));
  padding-top: calc(var(--nav-h, 72px) + clamp(40px, 5vw, 88px));
  padding-bottom: clamp(56px, 7vw, 104px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(251,250,246,0.97) 0%,
      rgba(251,250,246,0.93) 30%,
      rgba(251,250,246,0.74) 46%,
      rgba(251,250,246,0.32) 60%,
      rgba(251,250,246,0) 74%),
    linear-gradient(to bottom,
      rgba(251,250,246,0) 62%,
      rgba(251,250,246,0.85) 92%,
      var(--c-bg) 100%);
}
.hero__inner { width: 100%; }

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

.hero__h {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.04;
  max-width: 24ch;
}
.hero__h .nb { white-space: nowrap; }

.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 4px;
  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;
  flex-direction: column;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-ink);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 10px; }
.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: 960px) {
  .hero {
    display: block;
    min-height: 0;
    margin-top: calc(-1 * (var(--nav-h, 72px) + 16px));
    padding-top: calc(var(--nav-h, 72px) + 16px + clamp(40px, 9vw, 64px));
    padding-bottom: clamp(40px, 8vw, 64px);
    overflow: hidden;
  }
  /* Hero image as a fully blurred background on mobile (like crmproneziskovky.cz) */
  .hero__bg { display: block; }
  .hero__bg img {
    filter: blur(5px) saturate(1.18);
    transform: scale(1.05);
    object-position: 82% 20%;
    opacity: 0.7;
  }
  .hero__bg::after {
    background: linear-gradient(180deg,
      rgba(251,250,246,0.42) 0%,
      rgba(251,250,246,0.66) 52%,
      rgba(251,250,246,0.96) 100%);
  }
  .hero__brandline { display: none; }
  .hero__left { max-width: none; gap: 24px; }
  .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; }

/* Two-stat variant — balanced band, no stagger */
.numbers--2 {
  grid-template-columns: 1fr 1fr;
}
.numbers--2 .numbers__cell {
  padding: 48px 56px;
  justify-content: center;
}
.numbers--2 .numbers__cell:nth-child(even) { padding-top: 48px; }
.numbers--2 .numbers__big { display: flex; align-items: baseline; }
.numbers--2 .numbers__lbl { max-width: 30ch; }

/* Banded card treatment for the two-stat row */
.numbers--solo {
  grid-template-columns: 1fr;
}
.numbers--solo .numbers__cell {
  align-items: center;
  text-align: center;
}
.numbers--solo .numbers__big { justify-content: center; }
.numbers--band {
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  background: var(--c-paper);
  overflow: hidden;
}
.numbers--band .numbers__cell {
  border-right: 1px solid var(--c-rule);
  padding: 56px 48px;
}
.numbers--band .numbers__cell:last-child { border-right: none; }
@media (max-width: 640px) {
  .numbers--band { border-radius: 18px; }
  .numbers--band .numbers__cell {
    border-right: none;
    border-bottom: 1px solid var(--c-rule);
    padding: 36px 28px;
  }
  .numbers--band .numbers__cell:last-child { border-bottom: none; }
  .numbers--2 .numbers__cell:nth-child(even) { padding-top: 36px; }
}
.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--hl {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 1px var(--c-blue), 0 16px 40px -24px rgba(0,128,192,0.5);
}
.fcat__group--hl .fcat__num { color: var(--c-blue); }
.fcat__more {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 18px; align-self: flex-start;
  font-weight: 600; font-size: 14.5px; color: var(--c-blue);
}
.fcat__more svg { width: 15px; height: 15px; }
.fcat__more:hover { color: var(--c-deep); }
.fcat__group--wide { grid-column: 1 / -1; }
@media (min-width: 921px) {
  .fcat__group--wide {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    column-gap: 48px;
    row-gap: 14px;
    align-items: start;
  }
  .fcat__group--wide .fcat__head { grid-column: 1; grid-row: 1; }
  .fcat__group--wide .fcat__desc { grid-column: 1; grid-row: 2; max-width: 40ch; }
  .fcat__group--wide .fcat__list { grid-column: 2; grid-row: 1 / 3; align-content: center; }
}
.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; }
}
@media (max-width: 600px) {
  .showcase { padding: 32px 16px; border-radius: 22px; }
  .showcase__head { margin-bottom: 32px; gap: 16px; }
}

/* 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: 36ch;
  line-height: 1.5;
}

@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 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__note {
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-muted);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.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; }
}

/* ============================================================
   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(40px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  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; }
}

/* Light list variant on the blue CTA panel */
.cta__steps-lbl {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.cta__list--light li { color: rgba(255,255,255,0.92); }
.cta__list--light li::before { background: #fff; }
.cta__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 16px;
  font-weight: 500;
}
.cta__contact a { color: #fff; }
.cta__contact a:hover { color: var(--c-cream); }

/* ============================================================
   Lead form (Salesforce Web-to-Lead)
   ============================================================ */
.leadform {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}
.leadform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.leadform__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.leadform__field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--c-ink);
}
.leadform__field label span {
  color: var(--c-muted-2);
  font-weight: 500;
}
.leadform__field input,
.leadform__field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--c-ink);
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 12px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.leadform__field textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.5;
}
.leadform__field input::placeholder,
.leadform__field textarea::placeholder { color: var(--c-muted-2); }
.leadform__field input:focus,
.leadform__field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(0,128,192,0.15);
}
.leadform__consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--c-muted);
  cursor: pointer;
}
.leadform__consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--c-blue);
}
.leadform__consent a {
  color: var(--c-blue);
  border-bottom: 1px solid currentColor;
}
.leadform__submit {
  align-self: flex-start;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}
.leadform__note {
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.45;
  max-width: 48ch;
}

@media (max-width: 480px) {
  .leadform__row { 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 h5 {
  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__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); }

.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;
}
.fsplit__viz:has(.viz), .fsplit__viz--auto { aspect-ratio: auto; }
.fsplit__viz--shot {
  aspect-ratio: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  display: flex;
  align-items: center;
}
.fsplit__shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 26px 60px -28px rgba(10,31,51,0.45);
}
.appshot {
  max-width: 1040px;
  margin: 8px auto 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 44px 100px -46px rgba(10,31,51,0.6);
}
.appshot__img { width: 100%; height: auto; display: block; }

/* ============================================================
   FundraisingPack app mock (home showcase)
   ============================================================ */
.fpd {
  background: #fff;
  color: var(--c-ink);
  border-radius: 14px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.4;
  container-type: inline-size;
}
.fpd b { font-weight: 700; }

/* top bar */
.fpd__bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 28px;
  border-bottom: 1px solid #EDF0F3;
}
.fpd__brand {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.fpd__brand img { height: 26px; width: auto; display: block; }
.fpd__search {
  flex: 1;
  max-width: 440px;
  display: flex; align-items: center; gap: 10px;
  background: #F1F4F7;
  border-radius: 10px;
  padding: 11px 16px;
  color: #8A98A6;
  font-size: 14px;
}
.fpd__search svg { width: 15px; height: 15px; flex-shrink: 0; }
.fpd__baracts {
  display: flex; align-items: center; gap: 16px;
  margin-left: auto;
}
.fpd__icobtn { color: #9AA6B2; display: inline-flex; }
.fpd__icobtn svg { width: 20px; height: 20px; }
.fpd__user { display: flex; align-items: center; gap: 10px; }
.fpd__avatar {
  width: 36px; height: 36px; border-radius: 100px;
  background: linear-gradient(135deg, var(--c-blue-2), var(--c-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.02em;
}
.fpd__uwho { display: flex; flex-direction: column; line-height: 1.25; }
.fpd__uwho b { font-size: 13.5px; white-space: nowrap; }
.fpd__uwho i { font-style: normal; font-size: 12px; color: var(--c-muted); }

/* nav */
.fpd__nav {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 22px;
  border-bottom: 1px solid #EDF0F3;
}
.fpd__tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-muted);
  white-space: nowrap;
}
.fpd__tab svg { width: 15px; height: 15px; }
.fpd__tab.is-on { background: var(--c-blue); color: #fff; font-weight: 600; }

/* body */
.fpd__body {
  background: #F4F6F8;
  padding: 30px 32px 34px;
}
.fpd__date {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.fpd__h {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 12px;
}
.fpd__sub {
  color: var(--c-muted);
  font-size: 15px;
  margin-top: 8px;
}

/* action buttons */
.fpd__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.fpd__act {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #E2E8EE;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  white-space: nowrap;
}
.fpd__act svg { width: 16px; height: 16px; color: var(--c-blue); }
.fpd__act--p { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.fpd__act--p svg { color: #fff; }

/* kpi cards */
.fpd__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.fpd__kpi {
  background: #fff;
  border: 1px solid #E8EDF1;
  border-radius: 16px;
  padding: 20px;
}
.fpd__kpi-top { display: flex; align-items: flex-start; justify-content: space-between; }
.fpd__kpi-ico {
  width: 42px; height: 42px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.fpd__kpi-ico svg { width: 22px; height: 22px; }
.fpd__kpi-ico--blue   { background: var(--c-blue); }
.fpd__kpi-ico--teal   { background: #0FA89A; }
.fpd__kpi-ico--purple { background: #7C5CE0; }
.fpd__kpi-ico--green  { background: #1FA45A; }
.fpd__badge {
  font-family: "Manrope", sans-serif;
  font-size: 12px; font-weight: 600;
  padding: 5px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.fpd__badge--up  { background: rgba(31,164,90,0.13); color: #167A42; }
.fpd__badge--new { background: rgba(124,92,224,0.13); color: #5B40C4; }
.fpd__kpi-l {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  margin-top: 22px;
}
.fpd__kpi-v {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 8px;
  white-space: nowrap;
}
.fpd__kpi-d { font-size: 13px; color: var(--c-muted); margin-top: 6px; }

/* panels */
.fpd__panels {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.fpd__panel {
  background: #fff;
  border: 1px solid #E8EDF1;
  border-radius: 16px;
  padding: 22px 24px;
}
.fpd__panel-head { display: flex; align-items: flex-start; justify-content: space-between; }
.fpd__panel-head-r { text-align: right; }
.fpd__panel-h { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.fpd__panel-s { font-size: 13px; color: var(--c-muted); margin-top: 4px; white-space: nowrap; }
.fpd__trend { font-size: 20px; font-weight: 700; color: #1FA45A; letter-spacing: -0.02em; white-space: nowrap; }
.fpd__line { width: 100%; height: 230px; margin-top: 18px; display: block; }

/* donut */
.fpd__donut {
  position: relative;
  width: 190px; height: 190px;
  margin: 22px auto 6px;
}
.fpd__donut svg { width: 100%; height: 100%; }
.fpd__donut-c {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.fpd__donut-c b { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.fpd__donut-c i { font-style: normal; font-size: 13px; color: var(--c-muted); }
.fpd__legend { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.fpd__leg { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.fpd__leg em { font-style: normal; margin-left: auto; font-weight: 700; }
.fpd__dot { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }

@container (max-width: 720px) {
  .fpd__bar { gap: 14px; padding: 14px 18px; }
  .fpd__uwho, .fpd__search { display: none; }
  .fpd__nav { overflow-x: auto; padding: 8px 14px; -ms-overflow-style: none; scrollbar-width: none; }
  .fpd__nav::-webkit-scrollbar { display: none; }
  .fpd__body { padding: 22px 18px 26px; }
  .fpd__h { font-size: 23px; }
  .fpd__kpis { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fpd__kpi { padding: 16px; }
  .fpd__kpi-v { font-size: 21px; }
  .fpd__kpi-l { margin-top: 16px; }
  .fpd__panels { grid-template-columns: 1fr; }
  .fpd__act { flex: 1 1 auto; justify-content: center; }
}
@container (max-width: 440px) {
  .fpd__kpis { grid-template-columns: 1fr; }
  .fpd__kpi-v { font-size: 24px; }
  .fpd__h { font-size: 20px; }
  .fpd__line { height: 200px; }
  .fpd__panel { padding: 18px; }
  .fpd__donut { width: 150px; height: 150px; }
  .fpd__donut-c b { font-size: 24px; }
  .fpd__panel-s { white-space: normal; }
}

.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);
}

/* ============================================================
   Feature illustrations — CSS-built product UI mocks
   ============================================================ */
.viz {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Manrope", sans-serif;
}
.viz__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.viz__crumb {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.viz__pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--c-sky-light);
  color: var(--c-deep);
  white-space: nowrap;
}
.viz__card {
  background: var(--c-bg);
  border-radius: 14px;
  padding: 16px;
}
.viz--ink .viz__crumb { color: rgba(255,255,255,0.6); }
.viz--ink .viz__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ---- 1 · Donor card ---- */
.viz__profile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-bg);
  border-radius: 14px;
  padding: 16px;
}
.viz__avatar {
  width: 46px;
  height: 46px;
  border-radius: 100px;
  background: linear-gradient(145deg, var(--c-blue-2), var(--c-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}
.viz__pinfo { flex: 1; min-width: 0; }
.viz__name { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }
.viz__meta { font-size: 11px; color: var(--c-muted); margin-top: 3px; }
.viz__score { text-align: right; }
.viz__score-v { font-size: 22px; font-weight: 600; color: var(--c-blue); letter-spacing: -0.03em; }
.viz__score-l { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-muted); }
.viz__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.viz__stat {
  background: var(--c-bg);
  border-radius: 12px;
  padding: 13px 14px;
}
.viz__stat-v { display: block; font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }
.viz__stat-l { display: block; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-muted); margin-top: 4px; }
.viz__rows { display: flex; flex-direction: column; }
.viz__tl-head {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 10px;
}
.viz__row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--c-rule);
  font-size: 12px;
}
.viz__row:first-of-type { border-top: none; }
.viz__dot { width: 7px; height: 7px; border-radius: 100px; background: var(--c-blue); flex-shrink: 0; }
.viz__dot.is-sky { background: var(--c-sky); }
.viz__row-t { flex: 1; font-weight: 500; }
.viz__row-d { font-size: 11px; color: var(--c-muted); }
.viz__row-a { font-weight: 600; }

/* ---- 2 · Donation page (ink) ---- */
.viz__chrome {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 12px;
}
.viz__chrome i { width: 9px; height: 9px; border-radius: 100px; background: rgba(255,255,255,0.22); }
.viz__chrome span {
  margin-left: 8px; font-size: 10px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5); font-family: ui-monospace, monospace;
}
.viz__donate {
  flex: 1;
  background: #fff;
  color: var(--c-ink);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.viz__donate-h { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }
.viz__donate-sub { font-size: 11px; color: var(--c-muted); margin-top: -8px; }
.viz__amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.viz__amt {
  border: 1px solid var(--c-rule); border-radius: 10px;
  padding: 11px 0; text-align: center;
  font-size: 13px; font-weight: 600;
}
.viz__amt.is-on { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.viz__pays { display: flex; gap: 8px; }
.viz__pay {
  flex: 1; height: 30px; border-radius: 8px;
  background: var(--c-bg-2); display: grid; place-items: center;
  font-size: 9px; font-weight: 600; letter-spacing: 0.04em; color: var(--c-muted);
}
.viz__btn {
  background: var(--c-ink); color: #fff;
  border-radius: 100px; padding: 13px 0; text-align: center;
  font-size: 13px; font-weight: 600;
}

/* ---- 3 · Campaign + segment ---- */
.viz__seg { display: flex; flex-wrap: wrap; gap: 7px; }
.viz__chip {
  font-size: 11px; font-weight: 500;
  padding: 6px 11px; border-radius: 100px;
  background: var(--c-bg); border: 1px solid var(--c-rule); color: var(--c-ink);
}
.viz__chip.is-on { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.viz__funnel {
  background: var(--c-bg); border-radius: 14px; padding: 16px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.viz__funnel-row { display: flex; align-items: center; gap: 12px; }
.viz__funnel-l { font-size: 11px; width: 78px; color: var(--c-muted); flex-shrink: 0; }
.viz__funnel-track { flex: 1; height: 22px; border-radius: 6px; background: rgba(10,31,51,0.06); overflow: hidden; display: block; }
.viz__funnel-fill { display: block; height: 100%; border-radius: 6px; background: var(--c-blue); }
.viz__funnel-fill.is-sky { background: var(--c-sky); }
.viz__funnel-fill.is-deep { background: var(--c-deep); }
.viz__funnel-n { font-size: 12px; font-weight: 600; width: 44px; text-align: right; flex-shrink: 0; }
.viz__reach {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  background: var(--c-ink); color: #fff; border-radius: 12px; padding: 13px 16px;
}
.viz__reach-v { font-size: 20px; font-weight: 600; letter-spacing: -0.03em; white-space: nowrap; }
.viz__reach-l { font-size: 11px; color: rgba(255,255,255,0.6); }

/* ---- 4 · Reports dashboard ---- */
.viz__kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.viz__kpi { background: var(--c-bg); border-radius: 12px; padding: 13px 15px; }
.viz__kpi.is-ink { background: var(--c-ink); color: #fff; }
.viz__kpi-l { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-muted); }
.viz__kpi.is-ink .viz__kpi-l { color: rgba(255,255,255,0.6); }
.viz__kpi-v { font-size: 19px; font-weight: 600; letter-spacing: -0.03em; margin-top: 4px; }
.viz__kpi-d { font-size: 11px; color: #2D8A4A; font-weight: 500; margin-top: 2px; }
.viz__kpi.is-ink .viz__kpi-d { color: var(--c-blue-2); }
.viz__graph {
  flex: 1; background: var(--c-bg); border-radius: 14px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.viz__graph-head { display: flex; justify-content: space-between; align-items: center; }
.viz__graph-h { font-size: 12px; font-weight: 600; }
.viz__legend { display: flex; gap: 12px; font-size: 9px; letter-spacing: 0.04em; color: var(--c-muted); }
.viz__legend span { display: inline-flex; align-items: center; gap: 5px; }
.viz__legend i { width: 7px; height: 7px; border-radius: 100px; }
.viz__bars { flex: 1; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 7px; align-items: end; min-height: 90px; }
.viz__bars > div { display: flex; flex-direction: column-reverse; gap: 3px; justify-content: flex-start; }
.viz__bars i { display: block; border-radius: 3px; }
.viz__bars i.a { background: var(--c-blue); }
.viz__bars i.b { background: var(--c-sky); }

@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: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.addon {
  flex: 0 1 calc(33.333% - 10px);
  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) { .addon { flex-basis: calc(50% - 7px); } }
@media (max-width: 600px) { .addon { flex-basis: 100%; } }

/* Full-width addon band */
.addon--full{flex-basis:100%;flex-direction:row;justify-content:space-between;align-items:center;gap:32px}
.addon--full .addon__name{margin:8px 0 10px}
.addon--full .addon__desc{max-width:64ch;margin:0}
.addon--full .addon__foot{border-top:none;margin-top:0;padding-top:0;flex-shrink:0}
@media (max-width: 600px){.addon--full{flex-direction:column;align-items:flex-start;gap:14px}}

/* 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); }

/* ============================================================
   Phone polish (≤640 / ≤520)
   ============================================================ */

/* Wide comparison table: swipe horizontally instead of crushing 4 columns */
@media (max-width: 700px) {
  .cmp {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .cmp__row { min-width: 560px; }
}

@media (max-width: 640px) {
  /* Tighter vertical rhythm on phones */
  :root { --p-section: clamp(44px, 11vw, 60px); }

  /* Give big rounded panels more inner width + softer radius */
  .sfdark,
  .ai { border-radius: 24px; }
  .sfdark { padding: 34px 22px; }
  .cta__left { padding: 36px 24px; }
  .cta__right { padding: 32px 24px; }
  .dash { padding: 22px; }
  .basefeat { padding: 30px 22px; }

  /* Hero: full-width stacked CTAs, easier taps */
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; width: 100%; }
  .hero__brandline { flex-wrap: wrap; row-gap: 6px; }

  /* Numbers band: single column reads better than cramped 2-up */
  .numbers { grid-template-columns: 1fr; }
  .numbers__cell { border-right: none; border-bottom: 1px solid var(--c-rule); }
  .numbers__cell:last-child { border-bottom: none; }
  .numbers__cell:nth-child(even) { padding-top: 24px; }

  /* Pricing example rows: keep label + price on one tidy line */
  .priceframe__side { padding: 28px 22px; }
}

@media (max-width: 420px) {
  /* Logo never crowds the burger on the smallest phones */
  .nav__brand img { height: 34px; }
  .nav__inner { padding: 8px 10px 8px 16px; }
  .btn--ink { padding: 0 16px; }
}

/* ============================================================
   Design switcher — FundraisingPack vs. advanced (Cosmos)
   ============================================================ */
.dswitch__wrap { display: flex; justify-content: center; margin-bottom: 32px; }
.dswitch {
  display: inline-flex; gap: 4px; padding: 5px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-rule);
  border-radius: 100px;
}
.dswitch button {
  border: 0; background: transparent; font: inherit;
  font-weight: 600; font-size: 14.5px; color: var(--c-muted);
  padding: 12px 24px; border-radius: 100px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.dswitch button .d { width: 10px; height: 10px; border-radius: 100px; background: currentColor; opacity: 0.55; }
.dswitch button.is-on { background: #fff; color: var(--c-ink); box-shadow: 0 2px 10px -3px rgba(10,31,51,0.3); }
.dswitch button.is-on .d { opacity: 1; }
.dswitch button[data-view="fpd"].is-on .d { background: var(--c-blue); }
.dswitch button[data-view="sfx"].is-on .d { background: #7C5CE0; }
@media (max-width: 540px) {
  .dswitch__wrap { padding: 0 16px; }
  .dswitch { flex-direction: column; width: 100%; max-width: 360px; border-radius: 18px; }
  .dswitch button { justify-content: center; border-radius: 13px; width: 100%; }
}

.dstage__panel { display: none; }
.dstage__panel.is-on { display: block; }
@keyframes dfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.dstage__cap {
  max-width: 720px; margin: 26px auto 0; text-align: center;
  color: var(--c-muted); font-size: 15.5px; line-height: 1.55;
}
.dstage__cap b { color: var(--c-ink); font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .dstage__panel.is-on { animation: none; } }

/* ============================================================
   Advanced record interface mock (original — "Cosmos" tier)
   ============================================================ */
.sfx {
  background: #fff; color: var(--c-ink);
  border-radius: 14px; overflow: hidden;
  container-type: inline-size;
  font-size: 13px; line-height: 1.4;
}
.sfx__bar {
  display: flex; align-items: center; gap: 20px;
  padding: 12px 20px; border-bottom: 1px solid #EDF0F3;
}
.sfx__brand { display: flex; align-items: center; flex-shrink: 0; }
.sfx__brand img { height: 22px; width: auto; display: block; }
.sfx__search {
  flex: 1; max-width: 420px;
  display: flex; align-items: center; gap: 9px;
  background: #F1F4F7; border-radius: 8px;
  padding: 9px 14px; color: #8A98A6; font-size: 13px;
}
.sfx__search svg { width: 14px; height: 14px; }
.sfx__baracts { display: flex; align-items: center; gap: 14px; margin-left: auto; color: #9AA6B2; }
.sfx__baracts svg { width: 18px; height: 18px; }
.sfx__avatar {
  width: 30px; height: 30px; border-radius: 100px;
  background: linear-gradient(135deg, #7C5CE0, var(--c-deep));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; font-family: "Manrope", sans-serif;
}
.sfx__body { display: grid; grid-template-columns: 68px 1fr; min-height: 540px; }
.sfx__rail {
  background: var(--c-ink); padding: 14px 0;
  display: flex; flex-direction: column; gap: 2px; align-items: center;
}
.sfx__railitem {
  width: 52px; display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 9px 0; border-radius: 9px;
  color: rgba(255,255,255,0.55); font-size: 9px; font-weight: 500;
  font-family: "Manrope", sans-serif; text-align: center; line-height: 1.1;
}
.sfx__railitem svg { width: 19px; height: 19px; }
.sfx__railitem.is-on { background: rgba(255,255,255,0.12); color: #fff; }
.sfx__main { background: #F4F6F8; padding: 18px 22px; }
.sfx__rhead { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.sfx__robj { display: flex; gap: 12px; align-items: center; }
.sfx__robj-ico {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: #7C5CE0; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.sfx__robj-ico svg { width: 22px; height: 22px; }
.sfx__rlabel { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-muted); }
.sfx__rname { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }
.sfx__ractions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.sfx__rbtn {
  padding: 9px 15px; border: 1px solid #D7DEE5; border-radius: 8px;
  background: #fff; font-weight: 600; font-size: 12.5px; white-space: nowrap; color: var(--c-ink);
}
.sfx__rbtn--p { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.sfx__cols { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 14px; align-items: start; }
.sfx__card { background: #fff; border: 1px solid #E8EDF1; border-radius: 12px; padding: 16px 18px; }
.sfx__card + .sfx__card { margin-top: 14px; }
.sfx__cardh { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.sfx__cardh .ic { width: 24px; height: 24px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.sfx__cardh .ic svg { width: 14px; height: 14px; }
.sfx__cardh .ct { color: var(--c-muted); font-weight: 600; }
.sfx__field { padding: 9px 0; border-bottom: 1px solid #F0F3F6; }
.sfx__field:last-child { border-bottom: 0; padding-bottom: 0; }
.sfx__field .k { font-size: 11px; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.sfx__field .v { margin-top: 4px; font-weight: 500; }
.sfx__link { color: var(--c-blue); font-weight: 600; }
.sfx__tl { display: flex; flex-direction: column; gap: 16px; }
.sfx__tlitem { display: flex; gap: 11px; }
.sfx__tldot { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; }
.sfx__tldot svg { width: 15px; height: 15px; }
.sfx__tltxt b { font-weight: 600; }
.sfx__tltxt .meta { color: var(--c-muted); font-size: 12px; margin-top: 3px; }
.sfx__rel { display: flex; flex-direction: column; gap: 10px; }
.sfx__relrow { line-height: 1.45; }
.sfx__relrow .nm { color: var(--c-blue); font-weight: 600; }
.sfx__relrow .dt { color: var(--c-muted); font-size: 12px; }
.sfx__viewall { color: var(--c-blue); font-weight: 600; text-align: center; margin-top: 12px; padding-top: 12px; border-top: 1px solid #F0F3F6; }
.sfx__composer { display: flex; gap: 8px; margin-bottom: 14px; }
.sfx__composer span {
  width: 34px; height: 34px; border-radius: 100px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.sfx__composer span svg { width: 16px; height: 16px; }

@container (max-width: 760px) {
  .sfx__cols { grid-template-columns: 1fr; }
  .sfx__rhead { flex-direction: column; }
  .sfx__ractions { justify-content: flex-start; flex-wrap: wrap; }
  .sfx__search { display: none; }
}
@container (max-width: 480px) {
  .sfx__bar { gap: 12px; padding: 12px 14px; }
  .sfx__body { grid-template-columns: 50px 1fr; }
  .sfx__railitem { width: 46px; font-size: 8px; }
  .sfx__main { padding: 14px 14px 18px; }
  .sfx__rname { font-size: 18px; }
  .sfx__rbtn { padding: 8px 11px; font-size: 12px; }
  .sfx__ractions { gap: 6px; }
}

/* grow ladder */
.grow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grow__card {
  border: 1px solid var(--c-rule); border-radius: 24px; padding: 36px;
  display: flex; flex-direction: column; gap: 14px; background: var(--c-paper);
}
.grow__card--ink { background: var(--c-ink); color: #fff; border-color: transparent; }
.grow__tier { display: inline-flex; align-items: center; gap: 9px; font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-muted); }
.grow__card--ink .grow__tier { color: rgba(255,255,255,0.7); }
.grow__tier .d { width: 11px; height: 11px; border-radius: 4px; }
.grow__h { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.grow__p { color: var(--c-muted); font-size: 15px; line-height: 1.55; }
.grow__card--ink .grow__p { color: rgba(255,255,255,0.78); }
.grow__list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.grow__list li { position: relative; padding-left: 24px; font-size: 14.5px; line-height: 1.45; }
.grow__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 100px; background: var(--c-blue); }
.grow__card--ink .grow__list li::before { background: #7C5CE0; }
@media (max-width: 760px) { .grow { grid-template-columns: 1fr; } }

/* ── Case visual (Relația cu donatorii) ──────────────── */
.caseviz {
  width: 100%;
  background: var(--c-ink);
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.caseviz__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.caseviz__tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  color: #fff; background: var(--c-blue);
  padding: 5px 11px; border-radius: 100px;
}
.caseviz__id { font-size: 13px; color: var(--c-sky); font-variant-numeric: tabular-nums; }
.caseviz__who { font-size: 19px; font-weight: 700; }
.caseviz__sub { font-size: 14px; color: rgba(255,255,255,0.72); margin-top: -8px; }
.caseviz__rows { display: flex; flex-direction: column; gap: 9px; }
.caseviz__row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 14px;
}
.caseviz__k { font-size: 13.5px; color: rgba(255,255,255,0.9); }
.caseviz__v { font-size: 13.5px; color: var(--c-sky); margin-left: auto; white-space: nowrap; }
.caseviz__v:empty { display: none; }
.caseviz__pill {
  margin-left: auto;
  font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  white-space: nowrap;
}
.caseviz__v + .caseviz__pill { margin-left: 0; }
.caseviz__pill--auto { background: rgba(128,192,224,0.18); color: var(--c-sky); }
.caseviz__pill--check { background: rgba(240,233,214,0.16); color: var(--c-cream); }
.caseviz__pill--ok { background: rgba(40,170,110,0.2); color: #6FD9A6; }
.caseviz__feed { display: flex; flex-direction: column; gap: 0; }
.caseviz__fitem { display: flex; gap: 14px; padding: 10px 0; position: relative; }
.caseviz__fitem:not(:last-child)::before {
  content: ""; position: absolute; left: 5px; top: 24px; bottom: -2px;
  width: 2px; background: rgba(255,255,255,0.14);
}
.caseviz__dot {
  width: 12px; height: 12px; border-radius: 100px; flex-shrink: 0; margin-top: 5px;
  background: var(--c-sky); box-shadow: 0 0 0 4px rgba(128,192,224,0.15);
}
.caseviz__dot--ai { background: var(--c-blue-2); box-shadow: 0 0 0 4px rgba(31,168,224,0.15); }
.caseviz__dot--ok { background: #6FD9A6; box-shadow: 0 0 0 4px rgba(111,217,166,0.15); }
.caseviz__ftitle { font-size: 14.5px; font-weight: 600; }
.caseviz__ftime { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── Communication channels grid ─────────────────────── */
.chgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.chcard {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 16px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chcard__h {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ink);
  position: relative;
  padding-left: 18px;
}
.chcard__h::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: var(--c-blue);
}
.chcard__p { font-size: 14.5px; line-height: 1.55; color: var(--c-muted); }
@media (max-width: 900px) { .chgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .chgrid { grid-template-columns: 1fr; } }

/* ═══════════════ COMPARISON PAGE ═══════════════ */

/* ── Positioning card (Salesforce + Pack = result) ── */
.poscard {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.poscard__layer {
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.poscard__k { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.7; }
.poscard__v { font-size: 16px; font-weight: 700; }
.poscard__layer--base { background: var(--c-bg-2); color: var(--c-ink); border: 1px solid var(--c-rule); }
.poscard__layer--pack { background: var(--c-sky-light); color: var(--c-ink); border: 1px solid rgba(10,31,51,0.08); }
.poscard__layer--out { background: var(--c-ink); color: #fff; }
.poscard__plus, .poscard__eq {
  align-self: center;
  font-size: 20px; font-weight: 700; color: var(--c-blue);
  line-height: 1;
}

/* ── Myth / Reality cards ── */
.myth {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.myth__card {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.myth__bad, .myth__good {
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.55;
}
.myth__bad {
  color: var(--c-muted);
  background: var(--c-bg-2);
  font-style: italic;
}
.myth__good {
  color: var(--c-ink);
  border-top: 1px solid var(--c-rule);
}
.myth__lbl {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  font-style: normal;
  margin-bottom: 7px;
}
.myth__lbl--ok { color: var(--c-blue); }
@media (max-width: 760px) { .myth { grid-template-columns: 1fr; } }

/* ── Comparison table ── */
.cmp {
  border: 1px solid var(--c-rule);
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-paper);
}
.cmp__head, .cmp__row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
}
.cmp__head {
  background: var(--c-ink);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 5;
}
.cmp__corner, .cmp__col {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}
.cmp__corner { font-weight: 600; font-size: 14px; color: rgba(255,255,255,0.75); }
.cmp__name { font-size: 16px; font-weight: 700; }
.cmp__sub { font-size: 12.5px; color: rgba(255,255,255,0.65); }
.cmp__col--us { background: var(--c-blue); }
.cmp__col--us .cmp__sub { color: rgba(255,255,255,0.85); }
.cmp__row { border-top: 1px solid var(--c-rule); }
.cmp__feat {
  padding: 16px 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--c-ink);
  background: var(--c-bg-2);
  display: flex;
  align-items: center;
}
.cmp__cell {
  padding: 16px 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-muted);
  border-left: 1px solid var(--c-rule);
  position: relative;
}
.cmp__cell--us {
  background: rgba(128,192,224,0.12);
  color: var(--c-ink);
}
.cmp__ml { display: none; }
.dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 100px;
  margin-right: 8px;
  vertical-align: 1px;
}
.dot--ok { background: #2B9D6E; }
.dot--mid { background: #E0A53B; }
.dot--no { background: #D06464; }
.cmp__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--c-muted);
}
.cmp__leg { display: inline-flex; align-items: center; }

@media (max-width: 860px) {
  .cmp { border: none; border-radius: 0; background: transparent; }
  .cmp__head { display: none; }
  .cmp__row {
    display: block;
    background: var(--c-paper);
    border: 1px solid var(--c-rule);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
  }
  .cmp__feat {
    background: var(--c-ink);
    color: #fff;
    font-size: 15px;
  }
  .cmp__cell {
    border-left: none;
    border-top: 1px solid var(--c-rule);
    padding: 14px 18px;
  }
  .cmp__ml {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--c-muted-2);
    margin-bottom: 5px;
  }
  .cmp__cell--us .cmp__ml { color: var(--c-blue); }
}

/* ── Recommendation cards ── */
.pick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pick__card {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pick__card--us {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}
.pick__h {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink);
  position: relative;
  padding-left: 18px;
}
.pick__h::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 9px; height: 9px; border-radius: 100px;
  background: var(--c-blue);
}
.pick__card--us .pick__h { color: #fff; }
.pick__card--us .pick__h::before { background: var(--c-sky); }
.pick__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted-2);
  background: var(--c-bg-2);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: 2px;
}
.pick__p { font-size: 14.5px; line-height: 1.55; color: var(--c-muted); }
.pick__card--us .pick__p { color: rgba(255,255,255,0.82); }
@media (max-width: 860px) { .pick { grid-template-columns: 1fr; } }

