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

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

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

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

* { box-sizing: border-box; }
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);
  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;
}

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

@media (max-width: 960px) {
  .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);
  }
  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; }
  .nav__cta .btn--ghost { display: none; }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.numbers__cell {
  padding: 32px 24px;
  border-right: 1px solid var(--c-rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.numbers__cell:last-child { border-right: none; }
.numbers__cell:nth-child(even) { padding-top: 64px; }

/* 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__group--ink {
  background: var(--c-ink);
  color: #fff;
  border-color: transparent;
}
.fcat__group--ink .fcat__desc { color: rgba(255,255,255,0.65); }
.fcat__group--ink .fcat__list li { color: rgba(255,255,255,0.92); }
.fcat__group--ink .fcat__list li::before { background: var(--c-blue-2); }
.fcat__group--ink .fcat__num { color: var(--c-blue-2); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

