/* Datios.ai — shared styles
   Datios Design System v1.0 — cream surface, black authority,
   semantic green/magenta/purple signals. Fustat + JetBrains Mono. WCAG AA+ */

:root {
  /* Authority — black & ink carry the visual weight */
  --bc-blue: #000000;          /* primary action / wordmark / accent */
  --bc-blue-deep: #282828;     /* primary hover */
  --bc-blue-soft: #FAF8F5;     /* tint surface */
  --bc-blue-tint: #FAF8F5;     /* tint section bg */
  --bc-ink: #000000;           /* headlines */
  --bc-text: #282828;          /* body text, card titles, labels */
  --bc-muted: #6a6a6a;         /* supporting text only */
  --bc-line: #C8C1B8;          /* card dividers, separators */
  --bc-border: #9A9389;        /* input + ghost button borders */
  --bc-bg: #F5F0EA;            /* cream page canvas */
  --bc-bg-soft: #FAF8F5;       /* secondary card surface */
  --bc-bg-dark: #000000;       /* dark hero metric cards */

  /* Semantic signals — never decorative */
  --bc-green: #00BA1F;   --bc-green-dark: #007A14;   --bc-green-bg: #F0FAF1;
  --bc-magenta: #FF007A; --bc-magenta-dark: #B30056; --bc-magenta-bg: #FFF0F6;
  --bc-purple: #A523F9;  --bc-purple-dark: #6B0FBF;  --bc-purple-bg: #F5EEFF;

  /* Type */
  --bc-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Radii — cards lg, buttons/inputs md, pills full, tables none */
  --bc-radius: 16px;
  --bc-radius-sm: 8px;
  --bc-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 28px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bc-bg);
  color: var(--bc-text);
  font-family: 'Fustat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--bc-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* Layout container */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--bc-ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 16px;
}
h1 { font-size: clamp(34px, 5.2vw, 60px); letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 17px; }
p { margin: 0 0 14px; }
.lead { font-size: 19px; color: var(--bc-text); }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bc-blue);
  margin-bottom: 16px;
}
.accent { color: var(--bc-blue); font-style: normal; }
.muted { color: var(--bc-muted); }

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,240,234,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--bc-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bc-ink);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--bc-blue);
  display: inline-grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 14px;
}
.brand-mark-img {
  height: 28px; width: auto;
  display: inline-block;
  vertical-align: middle;
}
.nav-links {
  display: none;
  gap: 24px;
  align-items: center;
  font-size: 15px;
}
.nav-links > a,
.nav-links > .dropdown > .dropdown-trigger {
  color: var(--bc-ink);
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links > a.active,
.nav-links > a:hover,
.nav-links > .dropdown > .dropdown-trigger:hover {
  text-decoration: none;
  border-bottom-color: var(--bc-blue);
  color: var(--bc-ink);
}
.nav-links > .dropdown { position: relative; }
.dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  margin-top: -3px;
  transition: transform .15s ease;
}
.dropdown.open .dropdown-trigger::after { transform: rotate(-135deg); margin-top: 3px; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow);
  padding: 10px;
  display: none;
  z-index: 60;
}
.dropdown.open .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--bc-radius-sm);
  color: var(--bc-ink);
  font-weight: 500;
  font-size: 14px;
}
.dropdown-panel a:hover {
  background: var(--bc-bg-soft);
  text-decoration: none;
  color: var(--bc-ink);
}
.dropdown-panel a .desc {
  display: block;
  color: var(--bc-muted);
  font-weight: 400;
  font-size: 12.5px;
  margin-top: 2px;
}

/* Mobile menu expandable sub-items */
.mobile-menu .mobile-group > button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--bc-line);
  padding: 14px 24px;
  color: var(--bc-ink);
  font-weight: 500;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .mobile-group > button::after {
  content: "+";
  color: var(--bc-blue);
  font-size: 20px;
  line-height: 1;
}
.mobile-menu .mobile-group.open > button::after { content: "−"; }
.mobile-menu .mobile-group .sub {
  display: none;
  background: var(--bc-bg-soft);
}
.mobile-menu .mobile-group.open .sub { display: block; }
.mobile-menu .mobile-group .sub a {
  padding-left: 40px;
  font-size: 15px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bc-line);
  border-radius: 999px;
  padding: 4px;
  font-size: 13px;
  background: #fff;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--bc-muted);
  font-family: inherit;
  font-weight: 500;
}
.lang-toggle button.is-active {
  background: var(--bc-ink);
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bc-blue);
  color: #fff;
  border-radius: var(--bc-radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #000;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--bc-blue-deep); border-color: var(--bc-blue-deep); text-decoration: none; color: #fff; }
.btn.secondary {
  background: #fff;
  color: var(--bc-text);
  border: 2px solid #282828;
}
.btn.secondary:hover { background: var(--bc-bg-soft); color: var(--bc-text); border-color: #000; }
.btn.ghost {
  background: transparent; color: var(--bc-text); padding: 10px 14px; border-radius: var(--bc-radius-sm); border: 2px solid var(--bc-muted);
}
.btn.ghost:hover { background: var(--bc-bg-soft); text-decoration: none; color: #000; border-color: #282828; }
.hamburger {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--bc-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.hamburger svg { width: 18px; height: 18px; }

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--bc-line);
  background: #fff;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 24px;
  color: var(--bc-ink);
  border-bottom: 1px solid var(--bc-line);
  font-weight: 500;
}

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* Mobile nav: keep the CTA compact so it doesn't wrap or crowd the bar */
@media (max-width: 879px) {
  .nav-right { gap: 8px; }
  .nav-right .btn {
    padding: 8px 14px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 999px;
  }
}

/* Sections */
section { padding: 72px 0; border-top: 1px solid var(--bc-line); }
section:first-of-type { border-top: 0; }
section.alt { background: var(--bc-bg-soft); }
section.tint { background: var(--bc-blue-tint); }
section.dark { background: var(--bc-ink); color: #d9d9d9; border-top: 0; }
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: #fff; }
section.dark .muted { color: #8d8d8d; }
section.dark .btn.secondary { color: #fff; border-color: rgba(255,255,255,0.18); background: transparent; }
section.dark .btn.secondary:hover { background: rgba(255,255,255,0.06); color: #fff; }

@media (min-width: 760px) {
  section { padding: 96px 0; }
}

/* Hero */
.hero { padding-top: 72px; padding-bottom: 56px; }
.hero h1 { max-width: 18ch; text-wrap: balance; margin-bottom: 20px; }
@media (min-width: 900px) { .hero h1 { max-width: 22ch; } }
.hero .lead { max-width: 680px; margin-bottom: 4px; }
.hero-meta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--bc-muted);
  padding: 6px 12px;
  border: 1px solid var(--bc-line);
  border-radius: 999px;
  background: #fff;
}
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bc-blue); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* Stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  padding: 18px 20px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  background: #fff;
}
.stat .num { font-family: var(--bc-mono); font-size: 28px; font-weight: 700; color: var(--bc-ink); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat .lbl { color: var(--bc-muted); font-size: 13px; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
}
@media (min-width: 760px) { .cards.cards-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .cards.cards-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .cards.cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .cards.cards-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  padding: 26px 24px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.card h3 { margin-bottom: 8px; }
.card .price {
  font-size: 14px;
  color: var(--bc-muted);
  margin-bottom: 14px;
}
.card .card-cta {
  margin-top: auto;
  padding-top: 18px;
}
.card .who {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bc-blue);
  margin-bottom: 14px;
}
.card ul { margin: 0 0 14px; padding-left: 0; list-style: none; }
.card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border: 2px solid var(--bc-blue);
  border-right: 0; border-top: 0;
  transform: rotate(-45deg);
  border-radius: 1px;
}

/* Feature blocks (alternating image/text rows) */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--bc-line);
}
.feature:first-of-type { border-top: 0; padding-top: 0; }
.feature .feature-text h3 { margin-bottom: 10px; }
.feature .feature-visual {
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  background: var(--bc-bg-soft);
  padding: 22px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 880px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0; }
  .feature.reverse .feature-visual { order: -1; }
}

/* Mock dashboard visual */
.mock-card {
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: 10px;
  padding: 14px;
  font-size: 13px;
}
.mock-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; border-top: 1px dashed var(--bc-line); }
.mock-row:first-child { border-top: 0; }
.mock-row .name { color: var(--bc-ink); font-weight: 500; }
.mock-row .meta { font-size: 12px; color: var(--bc-muted); }
.mock-pill { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 500; }
.mock-pill.green { background: var(--bc-green-bg); color: var(--bc-green-dark); border: 1px solid var(--bc-green-dark); }
.mock-pill.amber { background: var(--bc-bg-soft); color: var(--bc-text); border: 1px solid var(--bc-border); }
.mock-pill.red { background: var(--bc-magenta-bg); color: var(--bc-magenta-dark); border: 1px solid var(--bc-magenta-dark); }

/* Steps (numbered approach) */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
  counter-reset: step;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  padding: 22px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  background: #fff;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 13px;
  color: var(--bc-blue);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.step h4 { margin-bottom: 6px; }
.step p { font-size: 14px; margin: 0; color: var(--bc-text); }

/* FAQ */
.faq details {
  border-top: 1px solid var(--bc-line);
  padding: 18px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--bc-line); }
.faq summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--bc-ink);
  list-style: none;
  font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--bc-blue); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; font-size: 16px; color: var(--bc-text); }

/* Team */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 760px) { .team { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1020px) { .team { grid-template-columns: repeat(4, 1fr); } }
.crew {
  padding: 18px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  background: #fff;
}
.crew .initials {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bc-blue-soft); color: var(--bc-blue);
  font-weight: 600; display: grid; place-items: center;
  margin-bottom: 12px;
}
.crew h4 { margin-bottom: 2px; font-size: 16px; }
.crew .role { font-size: 13px; color: var(--bc-muted); margin-bottom: 8px; }
.crew p { font-size: 14px; margin: 0; }
.crew a { font-size: 13px; }

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  padding: 28px;
  max-width: 640px;
}
.form-row {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 14px;
  font-weight: 500;
  color: var(--bc-ink);
}
.form-row .req { color: var(--bc-blue); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-sm);
  background: #fff;
  color: var(--bc-text);
  width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.12);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 13px; color: var(--bc-muted); margin-top: 6px; }
.form-success {
  display: none;
  padding: 16px;
  border: 1px solid var(--bc-blue);
  border-radius: var(--bc-radius-sm);
  background: var(--bc-blue-tint);
  color: var(--bc-ink);
  margin-bottom: 16px;
}
.form-success.show { display: block; }

/* Footer */
footer.site {
  background: var(--bc-bg-soft);
  border-top: 1px solid var(--bc-line);
  padding: 56px 0 32px;
  color: var(--bc-muted);
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 760px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot-grid h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-ink);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.foot-grid a { display: block; color: var(--bc-text); margin-bottom: 6px; font-size: 14px; }
.foot-grid a:hover { color: var(--bc-blue); }
.foot-base {
  border-top: 1px solid var(--bc-line);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

/* Language span visibility — JS controlled */
html[data-lang="nl"] [lang="en"] { display: none; }
html[data-lang="en"] [lang="nl"] { display: none; }

/* Pricing-hidden marker */
.no-price-note {
  font-size: 13px;
  color: var(--bc-muted);
  padding: 4px 10px;
  background: var(--bc-bg-soft);
  border-radius: 999px;
  display: inline-block;
}

/* Anchor offset for sticky header */
section[id] { scroll-margin-top: 80px; }

/* Final CTA */
.final-cta { padding: 96px 0; }
.final-cta h2 { max-width: 720px; }
.final-cta p { color: #c9c9c9; max-width: 640px; }

/* Comparison table — Assessment / Sprint / Pulse */
.compare-wrap {
  margin-top: 36px;
  border: 1px solid var(--bc-line);
  border-radius: 0;
  background: #fff;
  overflow: hidden;
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.compare th,
table.compare td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--bc-line);
}
table.compare thead th {
  background: var(--bc-bg-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bc-blue);
  border-bottom: 1px solid var(--bc-line);
}
table.compare thead th.product-col {
  color: var(--bc-ink);
  font-size: 15px;
  text-transform: none;
  letter-spacing: -0.005em;
}
table.compare tbody th {
  font-weight: 500;
  color: var(--bc-muted);
  font-size: 13px;
  background: var(--bc-bg-soft);
  width: 22%;
}
table.compare tbody td {
  color: var(--bc-text);
}
table.compare tr:last-child th,
table.compare tr:last-child td { border-bottom: 0; }
.compare-foot {
  padding: 18px 20px;
  border-top: 1px solid var(--bc-line);
  background: var(--bc-blue-tint);
  font-size: 14px;
  color: var(--bc-ink);
}
.compare-foot strong { color: var(--bc-blue); }

/* Mobile: stack the table as cards */
@media (max-width: 760px) {
  table.compare,
  table.compare thead,
  table.compare tbody,
  table.compare tr,
  table.compare th,
  table.compare td { display: block; width: auto; }
  table.compare thead { display: none; }
  table.compare tbody tr {
    border-bottom: 1px solid var(--bc-line);
    padding: 10px 0;
  }
  table.compare tbody th {
    background: transparent;
    color: var(--bc-blue);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 16px 4px;
    border-bottom: 0;
  }
  table.compare tbody td {
    padding: 4px 16px 10px;
    border-bottom: 0;
  }
  table.compare tbody td::before {
    content: attr(data-product);
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--bc-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }
}

/* Flow diagram (How Datios works) */
.flow {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 880px) {
  .flow {
    grid-template-columns: 1fr 36px 1fr 36px 1fr;
    gap: 0;
  }
}
.flow-step {
  display: flex;
  flex-direction: column;
}
.flow-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-blue);
  margin-bottom: 10px;
  text-align: center;
}
.flow-card {
  flex: 1;
  padding: 24px 22px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.flow-card h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--bc-ink);
}
.flow-card h4 + p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--bc-muted);
}
.flow-card h4 + p:last-child { margin-bottom: 0; }
.flow-card-primary {
  background: var(--bc-blue);
  border-color: var(--bc-blue);
}
.flow-card-primary h4 { color: #fff; }
.flow-card-primary h4 + p { color: rgba(255,255,255,0.78); }

.flow-arrow {
  align-self: center;
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-blue);
}
.flow-arrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -6px;
}
@media (min-width: 880px) {
  .flow-arrow {
    height: auto;
    align-self: stretch;
    margin-top: 32px;
  }
  .flow-arrow::before {
    transform: rotate(-45deg);
    margin-top: 0;
  }
}

/* Misc */
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bc-blue);
  margin-bottom: 12px;
}
.divider { height: 1px; background: var(--bc-line); margin: 48px 0; border: 0; }

/* Pulse feature visuals (specific) */
.pulse-unit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.pulse-unit .row { display:flex; justify-content:space-between; align-items:center; font-size:13px; }
.pulse-unit .row .label { color: var(--bc-muted); }
.pulse-unit .row .val { font-weight: 600; color: var(--bc-ink); }
.pulse-unit hr { border:0; border-top: 1px dashed var(--bc-line); margin: 6px 0; }

/* Alert summary mock */
.alert-mock {
  border-left: 3px solid var(--bc-magenta);
  background: var(--bc-magenta-bg);
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--bc-magenta-dark);
}
.alert-mock strong { color: var(--bc-magenta-dark); }

/* Ask interface mock */
.ask-mock {
  display: flex; flex-direction: column; gap: 8px;
}
.ask-mock .q {
  background: var(--bc-purple-bg);
  border: 1px solid var(--bc-purple-dark);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--bc-purple-dark);
  align-self: flex-start;
  max-width: 90%;
}
.ask-mock .a {
  background: #fff;
  border: 1px solid var(--bc-line);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--bc-text);
  align-self: flex-start;
  max-width: 100%;
}

/* ============================================================
   Datios Design System — component layer
   Semantic colour = signal only. Mono = technical/metric data.
   ============================================================ */

/* Technical / metric data — JetBrains Mono, tabular-nums */
.mono,
.stat .lbl + .num,
.mock-row .meta,
.pulse-unit .row .val,
.hero-meta {
  font-family: var(--bc-mono);
  font-variant-numeric: tabular-nums;
}

/* Status badges — border always visible at rest; pills = full radius */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  border-radius: 9999px;
  border: 1.5px solid #000; background: #fff; color: #282828;
}
.badge.green   { background: var(--bc-green-bg);   color: var(--bc-green-dark);   border-color: var(--bc-green-dark); }
.badge.magenta { background: var(--bc-magenta-bg); color: var(--bc-magenta-dark); border-color: var(--bc-magenta-dark); }
.badge.purple  { background: var(--bc-purple-bg);  color: var(--bc-purple-dark);  border-color: var(--bc-purple-dark); }
.badge.solid   { background: #000; color: #fff; border-color: #000; }

/* Signal cards — left-border accent, never full colour fill */
.card.signal-green   { border-left: 3px solid var(--bc-green); }
.card.signal-magenta { border-left: 3px solid var(--bc-magenta); }
.card.signal-purple  { border-left: 3px solid var(--bc-purple); }
.card.signal-dark    { background: #000; border-color: #000; color: #fff; }
.card.signal-dark h3, .card.signal-dark h4 { color: #fff; }
.card.signal-dark .muted { color: #9a9a9a; }

/* Callouts — full-width highlighted statements, light tint + coloured border */
.callout {
  padding: 20px 24px;
  border: 1px solid var(--bc-line);
  border-left: 3px solid #000;
  border-radius: var(--bc-radius-sm);
  background: #fff;
  font-size: 18px; line-height: 1.45; color: var(--bc-text);
  margin: 24px 0;
}
.callout.green   { background: var(--bc-green-bg);   border-left-color: var(--bc-green); }
.callout.magenta { background: var(--bc-magenta-bg); border-left-color: var(--bc-magenta); }
.callout.purple  { background: var(--bc-purple-bg);  border-left-color: var(--bc-purple); }

/* Data tables stay sharp (radius 0) */
table.compare { border-radius: 0; }

/* Team — horizontal member cards (2-col) */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 760px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.member {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
}
.member .avatar {
  flex: 0 0 76px;
  width: 76px;
  height: 92px;
  align-self: flex-start;
  border-radius: 10px;
  background: linear-gradient(165deg, #EFEAFD 0%, #DCD0FA 100%);
  color: #6D4FD6;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  display: grid;
  place-items: center;
}
.member .m-body { flex: 1; padding-right: 24px; }
.member .m-name { font-weight: 600; font-size: 17px; color: var(--bc-ink); margin: 0 0 2px; }
.member .m-role { font-size: 13px; color: var(--bc-muted); margin: 0 0 10px; }
.member .m-bio { font-size: 14px; line-height: 1.55; margin: 0; color: var(--bc-text); }
.member .m-linked {
  position: absolute;
  top: 22px; right: 22px;
  color: var(--bc-ink);
  display: inline-flex;
  line-height: 0;
}
a.m-linked:hover { color: var(--bc-blue); }
.member .m-linked svg { width: 18px; height: 18px; }

/* Two-column hero + section splits with illustration */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-split { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: 100%; max-width: 400px; height: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 8px;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 0.92fr 1.08fr; gap: 56px; }
  .split.reverse .split-art { order: -1; }
}
.split-art { display: flex; justify-content: center; }
.split-art img { width: 100%; max-width: 460px; height: auto; }

/* Final CTA with illustration */
.final-cta.has-art .cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .final-cta.has-art .cta-grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}
.cta-art { display: flex; justify-content: center; }
.cta-art img { width: 100%; max-width: 460px; height: auto; }
