/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #FFFFFF;
  --surface:     #F7F9FC;
  --surface-2:   #EEF3F8;
  --text:        #0F172A;
  --text-sec:    #475569;
  --muted:       #64748B;
  --accent:      #2563EB;
  --accent-h:    #1D4ED8;
  --border:      #D9E2EC;
  --border-md:   #C4D4E3;
  --blue-soft:   #EAF1FF;
  --border-soft: #E8EEF5;
  --pink:        #E94B8A;
  --pink-soft:   #FCE7F1;
  --pink-border: #F4B6CF;
  --success:     #15803D;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --r:           6px;
  --r-lg:        10px;
  --max-w:       1200px;
  --t:           160ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
ul     { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 84px 0; }

/* ── Section labels ─────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.label::before {
  content: '';
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Typography ─────────────────────────────────────────────── */
.section-heading {
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.026em;
  margin-bottom: 18px;
}

.section-body {
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.78;
}

.section-body p + p { margin-top: 14px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--r);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background var(--t), border-color var(--t), color var(--t), box-shadow var(--t);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.005em;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 1px 3px rgba(37,99,235,0.18);
}
.btn-primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  box-shadow: 0 3px 12px rgba(37,99,235,0.26);
}

.btn-outline {
  background: transparent;
  color: var(--text-sec);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--border-md);
  color: var(--text);
  background: var(--surface);
}

.btn-sm  { height: 36px; padding: 0 15px; font-size: 0.8125rem; }
.btn-lg  { height: 44px; padding: 0 24px; font-size: 0.9375rem; }

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 58px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}

.header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: auto;
}

.header-logo img { height: 24px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 16px;
}

.header-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  padding: 5px 13px;
  border-radius: var(--r);
  transition: color var(--t), background var(--t);
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 34px; height: 34px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 14px; height: 1.5px;
  background: var(--muted);
  border-radius: 2px;
}

/* ── Mobile drawer ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 58px; left: 0; right: 0; bottom: 0;
  z-index: 199;
  background: #fff;
  border-top: 1px solid var(--border);
  flex-direction: column;
  padding: 4px 24px 32px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-sec);
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}

.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] { color: var(--accent); }

.mobile-cta { margin-top: 28px; }
.mobile-cta .btn { width: 100%; height: 46px; font-size: 0.9375rem; }

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  padding: 136px 0 84px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(234,241,255,0.72) 100%);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 72% 58%, rgba(37,99,235,0.075) 0%, transparent 60%),
    radial-gradient(ellipse 30% 35% at 94% 12%, rgba(37,99,235,0.045) 0%, transparent 55%),
    linear-gradient(120deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 35%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  right: -6%;
  bottom: -18%;
  width: min(560px, 44vw);
  height: min(360px, 32vw);
  background:
    radial-gradient(ellipse at 30% 35%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 40%),
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.1) 0%, rgba(37,99,235,0.04) 48%, rgba(37,99,235,0) 74%),
    radial-gradient(ellipse at 72% 28%, rgba(233,75,138,0.06) 0%, rgba(233,75,138,0) 62%);
  filter: blur(6px);
  pointer-events: none;
}

#hero > .container {
  position: relative;
  z-index: 1;
}

.hero-ambient {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(10px);
}

.hero-ambient-left {
  left: -6%;
  top: 10%;
  width: min(320px, 27vw);
  height: min(320px, 27vw);
  background:
    radial-gradient(circle at 50% 50%, rgba(37,99,235,0.1) 0%, rgba(37,99,235,0.038) 42%, rgba(37,99,235,0) 74%);
  opacity: 0.95;
}

.hero-ambient-right {
  right: 9%;
  top: 19%;
  width: min(400px, 33vw);
  height: min(250px, 20vw);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.16) 40%, rgba(255,255,255,0) 68%),
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.11) 0%, rgba(37,99,235,0.04) 48%, rgba(37,99,235,0) 76%),
    radial-gradient(ellipse at 78% 36%, rgba(233,75,138,0.055) 0%, rgba(233,75,138,0) 62%);
  opacity: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-grid::after {
  content: '';
  position: absolute;
  right: -3%;
  top: 2%;
  width: min(440px, 38vw);
  height: min(300px, 24vw);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.12) 42%, rgba(255,255,255,0) 72%),
    radial-gradient(ellipse at 42% 50%, rgba(37,99,235,0.08) 0%, rgba(37,99,235,0.025) 48%, rgba(37,99,235,0) 78%),
    radial-gradient(ellipse at 78% 30%, rgba(233,75,138,0.04) 0%, rgba(233,75,138,0) 62%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.14);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Generic page hero (platform, solutions, about pages) */
.page-hero {
  padding: 108px 0 72px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(37,99,235,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: -8%;
  top: 10%;
  width: min(460px, 36vw);
  height: min(280px, 24vw);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.07) 0%, rgba(37,99,235,0.03) 46%, rgba(37,99,235,0) 72%),
    radial-gradient(ellipse at 80% 30%, rgba(233,75,138,0.045) 0%, rgba(233,75,138,0) 62%);
  filter: blur(8px);
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero-content {
  max-width: 680px;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.032em;
  color: var(--text);
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 1.0625rem;
  color: var(--text-sec);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 36px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.page-hero-grid .page-hero-content {
  max-width: none;
}

.page-hero-grid .page-hero-sub {
  max-width: 620px;
}

.page-hero-visual {
  position: relative;
}

.page-hero-visual::before {
  display: none;
}

.page-hero-visual.page-hero-visual-clean::before {
  display: none;
}

.legacy-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1;
}

.page-hero-solutions .page-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.solutions-hero-media img {
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  height: auto;
}

.section-subtitle {
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.72;
  max-width: 640px;
  margin-top: -2px;
}


.hero-content h1 {
  font-size: clamp(2.25rem, 3.8vw, 3.125rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.034em;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 560px;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-sec);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flow-card {
  width: 100%;
  max-width: 456px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,249,252,0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
}

.hero-photo-card {
  background: #eef3f8;
}

.hero-photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.flow-card svg { width: 100%; height: auto; display: block; }

/* ── Ambient softening layers ──────────────────────────────── */
.soft-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.soft-section > .container {
  position: relative;
  z-index: 1;
}

.soft-section::before,
.soft-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.soft-section::before {
  width: min(460px, 42vw);
  height: min(280px, 28vw);
  background:
    radial-gradient(ellipse at 35% 35%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 36%),
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.08) 0%, rgba(37,99,235,0.03) 48%, rgba(37,99,235,0) 76%);
  filter: blur(10px);
  opacity: 0.9;
}

.soft-section::after {
  width: min(300px, 28vw);
  height: min(220px, 20vw);
  background: radial-gradient(ellipse at 50% 50%, rgba(233,75,138,0.06) 0%, rgba(233,75,138,0) 68%);
  filter: blur(14px);
  opacity: 0.75;
}

.soft-section-left::before {
  left: -10%;
  top: 14%;
}

.soft-section-left::after {
  right: -6%;
  bottom: 6%;
}

.soft-section-right::before {
  right: -12%;
  top: 10%;
}

.soft-section-right::after {
  left: -4%;
  bottom: 10%;
}

.soft-section-center::before {
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
}

.soft-section-center::after {
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
}

.homepage-soft-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,249,252,0.9) 100%);
}

.homepage-soft-section::before {
  filter: blur(16px);
}

.homepage-soft-section::after {
  filter: blur(18px);
}

.homepage-soft-section-blue::before {
  background:
    radial-gradient(ellipse at 35% 35%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 34%),
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.11) 0%, rgba(37,99,235,0.042) 50%, rgba(37,99,235,0) 78%);
}

.homepage-soft-section-blue::after {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0) 46%),
    radial-gradient(ellipse at 58% 42%, rgba(37,99,235,0.065) 0%, rgba(37,99,235,0.022) 42%, rgba(37,99,235,0) 74%),
    radial-gradient(ellipse at 82% 24%, rgba(233,75,138,0.028) 0%, rgba(233,75,138,0) 60%);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}

.homepage-soft-section-rose::before {
  background:
    radial-gradient(ellipse at 35% 35%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 34%),
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.075) 0%, rgba(37,99,235,0.025) 48%, rgba(37,99,235,0) 76%);
}

.homepage-soft-section-rose::after {
  background:
    radial-gradient(ellipse at 48% 28%, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0) 46%),
    radial-gradient(ellipse at 50% 50%, rgba(233,75,138,0.05) 0%, rgba(233,75,138,0.016) 38%, rgba(233,75,138,0) 70%),
    radial-gradient(ellipse at 22% 42%, rgba(37,99,235,0.03) 0%, rgba(37,99,235,0) 66%);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}

.homepage-band {
  position: relative;
  overflow: hidden;
}

.homepage-band::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}

.homepage-band-blue::after {
  background:
    linear-gradient(90deg, rgba(37,99,235,0.028) 0%, rgba(37,99,235,0.008) 28%, rgba(37,99,235,0.008) 72%, rgba(37,99,235,0.02) 100%),
    radial-gradient(ellipse at 18% 50%, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0) 34%),
    radial-gradient(ellipse at 84% 42%, rgba(37,99,235,0.045) 0%, rgba(37,99,235,0) 58%);
}

.homepage-band-mix::after {
  background:
    linear-gradient(90deg, rgba(37,99,235,0.022) 0%, rgba(37,99,235,0.006) 30%, rgba(233,75,138,0.008) 72%, rgba(233,75,138,0.02) 100%),
    radial-gradient(ellipse at 16% 46%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 34%),
    radial-gradient(ellipse at 80% 50%, rgba(233,75,138,0.04) 0%, rgba(233,75,138,0) 54%);
}

/* ── Proof bar ──────────────────────────────────────────────── */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.proof-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37,99,235,0.03) 0%, rgba(37,99,235,0) 22%, rgba(37,99,235,0) 78%, rgba(233,75,138,0.025) 100%),
    radial-gradient(ellipse 28% 140% at 50% 0%, rgba(37,99,235,0.045) 0%, rgba(37,99,235,0) 74%);
  pointer-events: none;
}

.proof-bar .container {
  position: relative;
  z-index: 1;
}

.credentials-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 3px solid #1A56DB;
  padding: 20px 0;
}

.credentials-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.credential-item-featured {
  padding: 10px 16px;
  background: #EBF3FF;
  border: 1px solid #1A56DB;
  border-radius: 8px;
}

.credential-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1A56DB;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  flex-shrink: 0;
}

.credential-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0D1B2A;
}

.credential-text span {
  font-size: 0.75rem;
  color: #6B7280;
}

.impact-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.impact-bar .container,
.proof-bar .container {
  position: relative;
  z-index: 1;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.impact-item {
  padding: 18px 22px;
  border-right: 1px solid var(--border);
}

.impact-item:last-child {
  border-right: none;
}

.impact-value {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 6px;
  line-height: 1.1;
}

.impact-label {
  font-size: 0.8125rem;
  color: var(--text-sec);
  line-height: 1.45;
}

.proof-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  text-align: center;
}

.proof-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-items span {
  font-size: 0.875rem;
  color: var(--text-sec);
  font-weight: 500;
}

.proof-item-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  border: 1px solid var(--border-md);
  color: var(--accent) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(37,99,235,0.08);
}

.proof-item-badge::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(37,99,235,0.9) 0%, rgba(37,99,235,0.55) 100%);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
  flex-shrink: 0;
}

.proof-cert {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.proof-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--blue-soft);
  border: 1px solid var(--border-md);
  border-radius: 999px;
  padding: 5px 14px;
}

.proof-cert-badge svg { flex-shrink: 0; color: var(--accent); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.equation-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
  padding: 24px 28px;
  background: var(--blue-soft);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
  text-align: center;
}

.equation-banner strong { color: var(--accent); }

.subtle-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── HITRUST badge block ─────────────────────────────────────── */
.hitrust-badge {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--blue-soft);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  margin-bottom: 20px;
}

.hitrust-badge-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 2px;
}

.hitrust-badge-icon svg { width: 20px; height: 20px; }

.hitrust-badge-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.hitrust-badge-body {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ── Numbered steps (DRaaS How It Works) ────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 36px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background var(--t);
}

.step:last-child { border-bottom: none; }
.step:hover { background: var(--surface); }

.step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}

.step-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.step-body {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.68;
}

/* ── Problem callout (pink border) ──────────────────────────── */
.problem-callout {
  border-left: 3px solid var(--pink);
  background: var(--pink-soft);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 24px 28px;
  margin-top: 24px;
}

.problem-callout p {
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.75;
}

.problem-callout p + p { margin-top: 12px; }

/* ── Challenge checklist card ───────────────────────────────── */
.challenge-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.55;
}

.challenge-item:last-child { border-bottom: none; }

.challenge-box {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border: 1.5px solid var(--border-md);
  border-radius: 3px;
  margin-top: 2px;
}

/* ── Vision checklist (about page) ─────────────────────────── */
.vision-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  margin-bottom: 36px;
}

.vision-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.6;
}

.vision-item:last-child { border-bottom: none; }

.vision-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.vision-check svg { width: 10px; height: 10px; color: var(--accent); }

/* ── Platform ───────────────────────────────────────────────── */
#platform {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.15);
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.platform-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.platform-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}

.platform-item:last-child { border-bottom: none; }
.platform-item:hover { background: var(--surface); }

.pi-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pi-icon svg { width: 12px; height: 12px; color: var(--accent); }

.pi-text { font-size: 0.8125rem; color: var(--text-sec); line-height: 1.55; }

.pi-text strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1px;
  font-size: 0.8125rem;
  letter-spacing: -0.005em;
}

/* ── Solutions ──────────────────────────────────────────────── */
#solutions {
  border-bottom: 1px solid var(--border);
}

.solutions-header {
  max-width: 580px;
  margin-bottom: 44px;
}

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

/* 2-column variant used on platform page for DTRF cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card,
.sol-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: border-color var(--t), box-shadow var(--t);
  cursor: default;
}

.card:hover,
.sol-card:hover {
  border-color: rgba(37,99,235,0.28);
  box-shadow: 0 2px 16px rgba(37,99,235,0.06);
}

.card-wide { grid-column: 1 / -1; }

.sol-num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 14px;
}

.card h3,
.sol-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 9px;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

.card p,
.sol-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

.card-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.12);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1;
}

/* ── Trust ──────────────────────────────────────────────────── */
#trust {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.trust-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.trust-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-panel-title {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 1;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.trust-signal-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}

.trust-item:last-child { border-bottom: none; }
.trust-item:hover { background: var(--pink-soft); }

.trust-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--pink-soft);
  border: 1px solid var(--pink-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-check svg { width: 9px; height: 9px; color: var(--pink); }

.trust-item p { font-size: 0.8125rem; color: var(--text-sec); line-height: 1.5; }

/* ── About ──────────────────────────────────────────────────── */
#about {
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-who-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 34px;
  margin-bottom: 10px;
}

.about-who-list { display: flex; flex-direction: column; }

.about-who-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-sec);
  transition: color var(--t);
}

.about-who-item:last-child { border-bottom: none; }

.about-who-dot {
  flex-shrink: 0;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.about-who-item:hover { color: var(--text); }

.about-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.about-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
  opacity: 0.7;
}

.about-callout-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.about-callout h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.4;
}

.about-callout p {
  font-size: 0.8125rem;
  color: var(--text-sec);
  line-height: 1.72;
}

.about-callout p + p { margin-top: 10px; }

.about-callout-proof {
  border-left: 3px solid #1A56DB;
  background: #EBF3FF;
}

.about-callout-proof h3 {
  font-size: 1rem;
  line-height: 1.5;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.plain-list p {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.65;
}

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

.operating-card {
  padding-top: 20px;
}

.operating-media {
  height: 180px;
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-inline: 0;
}

.operating-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.operating-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.06) 0%, rgba(15,23,42,0) 34%, rgba(15,23,42,0.44) 100%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0) 22%);
  pointer-events: none;
}

.operating-media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.68);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  z-index: 1;
}

.operating-media-title {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  z-index: 1;
  text-shadow: 0 3px 10px rgba(15,23,42,0.3);
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reference-media {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
  margin: 0;
}

.reference-media img {
  width: 100%;
  display: block;
  background: transparent;
}

.reference-media-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reference-media-photo-full img {
  object-fit: contain;
  background: #fff;
}

.reference-media-tall img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.reference-media-diagram img {
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.reference-media-photo.solutions-hero-media img {
  aspect-ratio: auto;
  object-fit: contain;
  width: 100%;
}

.platform-hero-graphic img {
  background: #fff;
}

.reference-media figcaption {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(247,249,252,0.98) 0%, rgba(255,255,255,0.98) 100%);
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.6;
}

.reference-media-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-reference-media {
  max-width: 760px;
  margin: 24px auto 0;
}

.evidence-sample {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15,23,42,0.04);
}

.evidence-sample-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 18px;
  background: linear-gradient(180deg, rgba(234,241,255,0.86) 0%, rgba(247,249,252,0.94) 100%);
  border-bottom: 1px solid var(--border);
}

.evidence-sample-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.evidence-sample-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.018em;
}

.evidence-sample-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(37,99,235,0.12);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.evidence-sample-grid {
  display: grid;
}

.evidence-sample-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 15px 22px;
  border-bottom: 1px solid var(--border);
}

.evidence-sample-row:last-child {
  border-bottom: none;
}

.evidence-sample-row span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.evidence-sample-row strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
}

.evidence-sample-note {
  padding: 16px 22px 20px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ── Contact ────────────────────────────────────────────────── */
#contact {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}

.contact-meta { margin-top: 28px; }

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.contact-meta-item:last-child { border-bottom: none; }

.contact-meta-item strong {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 64px;
  flex-shrink: 0;
  padding-top: 2px;
}

.contact-meta-item span,
.contact-meta-item a {
  font-size: 0.8125rem;
  color: var(--text-sec);
  transition: color var(--t);
  line-height: 1.5;
}

.contact-meta-item a:hover { color: var(--accent); }

.form-intro {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.contact-form { display: flex; flex-direction: column; gap: 13px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 13px;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.09);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.form-success {
  display: none;
  font-size: 0.8125rem;
  color: var(--success);
  font-weight: 500;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.footer-brand img { height: 20px; width: auto; margin-bottom: 12px; }

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 2px;
}

.footer-nav a {
  font-size: 0.75rem;
  color: var(--muted);
  transition: color var(--t);
}

.footer-nav a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 0.75rem; color: var(--muted); }

/* ── Focus ──────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Solution card icons ────────────────────────────────────── */
.sol-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.sol-icon svg { width: 16px; height: 16px; }

/* ── Platform pipeline diagram ──────────────────────────────── */
.plat-pipeline {
  display: flex;
  align-items: flex-start;
  margin-top: 44px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 108px;
}
.pp-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  color: var(--accent);
  flex-shrink: 0;
}
.pp-icon svg { width: 17px; height: 17px; }
.pp-step:last-child .pp-icon {
  background: var(--pink-soft);
  border-color: var(--pink-border);
  color: var(--pink);
}
.pp-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pp-step-desc {
  font-size: 0.6875rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 110px;
}
.pp-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-top: 12px;
  flex-shrink: 0;
  color: var(--border-md);
}
.pp-arrow svg { width: 22px; height: 12px; flex-shrink: 0; }

/* ── Trust lineage diagram ──────────────────────────────────── */
.trust-lineage {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 16px 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.trust-lineage svg { width: 100%; height: auto; display: block; }

/* ── Stats row ──────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 44px;
}

.stat-cell {
  background: var(--bg);
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Integration lists ──────────────────────────────────────── */
.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.integration-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.integration-col-header {
  padding: 12px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.integration-col ul { padding: 6px 0; }

.integration-col li {
  padding: 9px 18px;
  font-size: 0.8125rem;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.integration-col li:last-child { border-bottom: none; }

.integration-col li::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

.compat-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}

.compat-table th,
.compat-table td {
  width: 50%;
  text-align: left;
  vertical-align: top;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.compat-table th {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0;
}

.compat-table td {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.9;
}

.compat-table th + th,
.compat-table td + td {
  padding-left: 36px;
}

.fine-print {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Security cards ─────────────────────────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.security-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.security-card-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.security-card p {
  font-size: 0.8125rem;
  color: var(--text-sec);
  line-height: 1.65;
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.governance-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
}

.governance-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.governance-icon svg {
  width: 18px;
  height: 18px;
}

/* ── Page CTA band ──────────────────────────────────────────── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -14%;
  transform: translateX(-50%);
  width: min(620px, 58vw);
  height: min(220px, 18vw);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.06) 0%, rgba(37,99,235,0.02) 46%, rgba(37,99,235,0) 76%),
    radial-gradient(ellipse at 75% 45%, rgba(233,75,138,0.035) 0%, rgba(233,75,138,0) 58%);
  filter: blur(10px);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.024em;
  color: var(--text);
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 1rem;
  color: var(--text-sec);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Solutions board ───────────────────────────────────────── */
.solution-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(260px, 0.92fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: 0 12px 32px rgba(15,23,42,0.04);
}

.solution-board-col {
  min-width: 0;
}

.solution-board-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.solution-board-stack {
  display: grid;
  gap: 10px;
}

.solution-board-item {
  min-height: 56px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,249,252,0.98) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-sec);
  line-height: 1.35;
}

.solution-board-arrow {
  color: rgba(37,99,235,0.42);
  font-size: 1rem;
  font-weight: 700;
  align-self: center;
}

.solution-board-core {
  min-width: 0;
}

.solution-board-core-card {
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,0.16);
  background: linear-gradient(180deg, rgba(234,241,255,0.96) 0%, rgba(247,249,252,0.98) 100%);
  padding: 18px 16px;
}

.solution-board-core-step {
  min-height: 78px;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,0.1);
  background: rgba(255,255,255,0.84);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px;
}

.solution-board-core-step strong {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 4px;
}

.solution-board-core-step span {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

.solution-board-core-step-accent {
  border-color: rgba(37,99,235,0.18);
}

.solution-board-core-step-pink {
  border-color: rgba(233,75,138,0.16);
  background: linear-gradient(180deg, rgba(252,231,241,0.62) 0%, rgba(255,255,255,0.96) 100%);
}

.solution-board-core-divider {
  height: 18px;
  width: 1px;
  margin: 0 auto;
  background: rgba(37,99,235,0.18);
}

.solution-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.solution-board-outcome {
  min-height: 74px;
  border-radius: 16px;
  border: 1px solid rgba(37,99,235,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,249,252,0.98) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-sec);
  line-height: 1.35;
}

/* ── Segment cards (solutions page) ────────────────────────── */
.segment-card {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.segment-card:last-child { margin-bottom: 0; }

.segment-card > * {
  position: relative;
  z-index: 1;
}

.segment-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 48px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.14);
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.65) 18%, rgba(37,99,235,0.18) 58%, rgba(37,99,235,0.04) 100%);
  box-shadow: 0 0 0 8px rgba(37,99,235,0.035);
  pointer-events: none;
  z-index: 0;
}

.segment-card::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: var(--r-lg);
  background: linear-gradient(110deg, rgba(37,99,235,0.032) 0%, rgba(37,99,235,0.012) 18%, rgba(255,255,255,0) 44%, rgba(233,75,138,0.018) 100%);
  pointer-events: none;
  z-index: 0;
}

.segment-card:nth-of-type(2)::before,
.segment-card:nth-of-type(4)::before {
  border-color: rgba(233,75,138,0.16);
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.65) 18%, rgba(233,75,138,0.18) 58%, rgba(233,75,138,0.04) 100%);
  box-shadow: 0 0 0 8px rgba(233,75,138,0.03);
}

.segment-card:nth-of-type(3)::after,
.segment-card:nth-of-type(5)::after {
  background: linear-gradient(110deg, rgba(233,75,138,0.02) 0%, rgba(37,99,235,0.016) 28%, rgba(255,255,255,0) 44%, rgba(37,99,235,0.026) 100%);
}

.seg-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.seg-heading {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.seg-body {
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 18px;
}

.seg-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  max-width: 620px;
}

.seg-visual-node {
  min-height: 62px;
  border-radius: 12px;
  border: 1px solid rgba(37,99,235,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,249,252,0.96) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--text-sec);
  line-height: 1.35;
}

.seg-visual-node-accent {
  color: var(--text);
  background: linear-gradient(180deg, rgba(234,241,255,0.98) 0%, rgba(247,249,252,0.96) 100%);
  border-color: rgba(37,99,235,0.18);
  box-shadow: inset 0 0 0 1px rgba(37,99,235,0.03);
}

.seg-visual-link {
  width: 18px;
  height: 1px;
  background: rgba(37,99,235,0.28);
  position: relative;
}

.seg-visual-link::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(37,99,235,0.36);
  border-right: 1px solid rgba(37,99,235,0.36);
  transform: translateY(-50%) rotate(45deg);
}

.seg-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.seg-outcomes {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  margin-top: 4px;
}

.seg-outcomes-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.seg-outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-sec);
  line-height: 1.55;
}

.seg-outcome-item:last-child { border-bottom: none; }

.seg-outcome-arrow {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.875rem;
  margin-top: 1px;
}

/* ── Team cards (about page) ────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.team-card {
  display: flex;
  align-items: stretch;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px;
  transition: border-color var(--t);
}

.team-card:hover { border-color: var(--border-md); }

.team-photo {
  margin: 0;
  width: 108px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.team-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-photo-brad {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(15,23,42,0.08) 100%),
    url("assets/images/home-team.jpg");
  background-size: cover;
  background-position: center;
}

.team-photo-brad img {
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  transform-origin: center;
}

.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.team-info {
  align-self: center;
}

.team-info-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.012em;
  margin-bottom: 2px;
}

.team-info-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.team-info-bio {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Board cards */
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.board-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 22px;
}

.board-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.board-photo {
  margin: 0;
  width: 72px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.board-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.board-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 3px;
}

.board-title {
  font-size: 0.8125rem;
  color: var(--muted);
}

.board-bio {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero-grid, .platform-grid,
  .trust-grid, .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .segment-card { gap: 36px; }
  .solution-board { grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.9fr) auto minmax(0, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-item:nth-child(2) { border-right: none; }
  .impact-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .operating-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-visual { max-width: 700px; }

  #hero::after,
  .page-hero::after {
    opacity: 0.75;
  }

  .hero-ambient-left,
  .hero-ambient-right {
    opacity: 0.65;
  }

  .hero-grid::after {
    width: min(340px, 34vw);
    height: min(220px, 22vw);
    opacity: 0.75;
  }

  .soft-section::before {
    width: min(380px, 44vw);
    height: min(220px, 24vw);
    opacity: 0.8;
  }

  .soft-section::after {
    width: min(240px, 24vw);
    height: min(180px, 18vw);
    opacity: 0.65;
  }

  .homepage-soft-section-blue::after,
  .homepage-soft-section-rose::after {
    background-position: center;
  }

  .homepage-band::after {
    opacity: 0.75;
  }
}

/* ── Platform operational model responsive fix ─────────────── */
.operational-model-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}

.operational-model-grid > * {
  min-width: 0;
}

.operational-model-grid .plat-pipeline {
  margin-top: 0;
  width: 100%;
}

@media (max-width: 1400px) {
  .operational-model-grid .pp-step {
    min-width: 92px;
  }

  .operational-model-grid .pp-step-desc {
    max-width: 96px;
  }

  .operational-model-grid .pp-arrow {
    padding: 0 4px;
    padding-top: 12px;
  }
}

@media (max-width: 900px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr; gap: 10px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .solution-board {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .solution-board-arrow { justify-self: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }

  .header-nav, .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }

  #hero { padding: 106px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  #hero::after,
  .page-hero::after {
    width: 280px;
    height: 180px;
    opacity: 0.55;
  }

  .hero-ambient-left {
    width: 180px;
    height: 180px;
    left: -10%;
    top: 12%;
    opacity: 0.5;
  }

  .hero-ambient-right {
    width: 220px;
    height: 150px;
    right: -6%;
    top: 18%;
    opacity: 0.45;
  }

  .hero-grid::after {
    width: 220px;
    height: 160px;
    right: -10%;
    top: 10%;
    opacity: 0.38;
  }

  .homepage-soft-section-blue::after,
  .homepage-soft-section-rose::after,
  .homepage-band::after {
    opacity: 0.55;
  }

  .page-hero { padding: 84px 0 56px; }
  .legacy-visual-stack {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .solution-board-arrow {
    justify-self: center;
  }
  .solution-board-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid,
  .trust-grid,
  .about-grid { grid-template-columns: 1fr; gap: 36px; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .governance-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .soft-section::before,
  .soft-section::after,
  .cta-band::before,
  .proof-bar::before {
    opacity: 0.45;
  }

  .segment-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }

  .seg-visual {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: none;
  }

  .seg-visual-link {
    width: 1px;
    height: 14px;
    justify-self: center;
  }

  .seg-visual-link::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }

  .segment-card::before {
    top: 42px;
    width: 12px;
    height: 12px;
  }

  .evidence-sample-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .evidence-sample-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .team-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: 1fr; }
  .compat-table,
  .compat-table tbody,
  .compat-table tr,
  .compat-table th,
  .compat-table td {
    display: block;
    width: 100%;
  }
  .compat-table th,
  .compat-table td {
    padding: 10px 0;
  }
  .compat-table th + th,
  .compat-table td + td { padding-left: 0; }
  .plat-pipeline { padding: 18px 16px; }
  .pp-step { min-width: 90px; }
  .pp-step-label { font-size: 0.6875rem; white-space: normal; }
}

@media (max-width: 640px) {
  .solutions-grid { grid-template-columns: 1fr; gap: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .proof-items { gap: 20px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .impact-item:last-child { border-bottom: none; }

  .soft-section::before,
  .soft-section::after,
  .cta-band::before,
  .proof-bar::before {
    opacity: 0.3;
  }

  .segment-card {
    padding: 24px 18px;
  }

  .segment-card::after {
    inset: 12px 0 12px 0;
  }
}
