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

:root {
  --navy:      #0B1F3A;
  --navy-mid:  #132840;
  --navy-lt:   #1A3455;
  --white:     #FFFFFF;
  --off:       #F7F8FA;
  --border:    #E2E7EF;
  --border-dk: #C8D2E0;
  --text:      #0D1B2E;
  --body:      #3D526B;
  --muted:     #7A8EA8;
  --gold:      #B8860B;
  --gold-lt:   #FDF8ED;
  --gold-mid:  #D4A017;
  --emerald:   #0D6E4E;
  --emerald-lt:#E6F5F0;
  --teal:      #0A6B82;
  --teal-lt:   #E5F3F7;
  --red:       #C0392B;
  --shadow-sm: 0 1px 4px rgba(11,31,58,0.07), 0 1px 2px rgba(11,31,58,0.04);
  --shadow-md: 0 4px 16px rgba(11,31,58,0.08), 0 2px 6px rgba(11,31,58,0.05);
  --shadow-lg: 0 12px 40px rgba(11,31,58,0.12), 0 4px 12px rgba(11,31,58,0.07);
  --shadow-xl: 0 24px 80px rgba(11,31,58,0.16), 0 8px 24px rgba(11,31,58,0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* ── HAMBURGER / MOBILE MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  background: transparent;
  z-index: 300;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
  animation: menuSlide .2s ease;
}
.mobile-menu.open { display: flex; }

@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 7px;
  transition: background .15s, color .15s;
}
.mobile-menu a:hover { background: var(--off); color: var(--navy); }

.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.mobile-menu-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.mobile-menu-actions .btn-outline,
.mobile-menu-actions .btn-primary {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  font-size: 0.84rem;
}
.mobile-menu-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--emerald);
  padding: 8px 12px 4px;
}
.mobile-menu-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .hamburger { display: flex; }
}
/* ── COMPLIANCE BANNER ── */
.compliance-banner {
  background: var(--navy);
  padding: 9px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.compliance-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cb-badge svg { color: #D4A017; }
.cb-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.12); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  justify-content: space-between;
  transition: box-shadow .25s;
}
nav.scrolled { box-shadow: var(--shadow-md); }

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { color: #D4A017; }
.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--gold-mid); }
.logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.nav-center { display: flex; gap: 6px; list-style: none; }
.nav-center a {
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-center a:hover { color: var(--navy); background: var(--off); }
.nav-center a.active { color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--emerald);
  padding: 5px 10px;
  background: var(--emerald-lt);
  border-radius: 20px;
  margin-right: 4px;
}
.nav-trust::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2.5s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(13,110,78,0.5); }
  50%      { box-shadow: 0 0 0 4px rgba(13,110,78,0); }
}
.btn-outline {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--border-dk);
  border-radius: 7px;
  text-decoration: none;
  transition: all .15s;
}
.btn-outline:hover { border-color: var(--navy); background: var(--off); }
.btn-primary {
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border-radius: 7px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(11,31,58,0.25);
}
.btn-primary:hover { background: var(--navy-lt); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(11,31,58,0.3); }

/* ── SCROLL PROGRESS ── */
#scroll-prog {
  position: fixed; top: 0; left: 0;
  height: 2px; z-index: 999;
  background: linear-gradient(90deg, var(--gold-mid), var(--navy));
  width: 0; transition: width .1s linear;
}

/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 66px - 38px);
  display: flex;
  flex-direction: column;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 55% 45%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, rgba(26,52,85,0.15) 40%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,107,130,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 10;
  max-width: 1260px;
  margin: 0 auto;
  padding: 72px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold-mid); }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 22px;
}
h1 em { font-style: italic; color: var(--gold-mid); }

.hero-sub {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.cta-gold {
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold-mid);
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(212,160,23,0.35);
}
.cta-gold:hover { background: #c49212; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.4); }

.cta-ghost {
  padding: 13px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  text-decoration: none;
  transition: all .15s;
}
.cta-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }

/* Trust indicators under CTA */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ht-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.ht-item svg { color: rgba(212,160,23,0.7); flex-shrink: 0; }
.ht-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.1); }

/* Hero right — dashboard panel */
.hero-panel-wrap { position: relative; }
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212,160,23,0.12),
    0 32px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
}

.panel-header {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
}
.panel-title { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }
.panel-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #34D399;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #34D399; flex-shrink: 0;
  position: relative;
}
.live-dot::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: #34D399; opacity: 0;
  animation: ping-live 2s ease-out infinite;
}
@keyframes ping-live {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

.panel-body { padding: 16px; }

.panel-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.pkpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 12px 13px;
  cursor: default;
  transition: background .2s;
}
.pkpi:hover { background: rgba(255,255,255,0.07); }
.pkpi-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem; color: #fff; line-height: 1.2;
}
.pkpi-val.green { color: #34D399; }
.pkpi-val.gold  { color: #D4A017; }
.pkpi-lbl { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* Mini line chart */
.panel-chart-area {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.panel-chart-label { font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.27); margin-bottom: 8px; }
#hero-chart { width: 100%; height: 64px; display: block; }

/* Transaction feed */
.panel-table { width: 100%; border-collapse: collapse; }
.panel-table th {
  font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25); text-align: left; padding: 0 8px 7px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.panel-table td {
  font-size: 0.74rem; color: rgba(255,255,255,0.7);
  padding: 7px 8px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.panel-table tr:last-child td { border-bottom: none; }
.panel-table tbody tr.new-row { animation: rowIn .7s ease forwards; }
@keyframes rowIn {
  0%   { background: rgba(52,211,153,0.1); }
  100% { background: transparent; }
}

.status-pill { display: inline-block; font-size: 0.57rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 7px; border-radius: 4px; }
.pill-green  { background: rgba(13,110,78,0.2); color: #34D399; border: 1px solid rgba(52,211,153,0.2); }
.pill-amber  { background: rgba(212,160,23,0.15); color: #F59E0B; border: 1px solid rgba(245,158,11,0.2); }
.pill-red    { background: rgba(192,57,43,0.15); color: #F87171; border: 1px solid rgba(248,113,113,0.18); }

.panel-foot {
  padding: 9px 16px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
}
.panel-foot-left { font-size: 0.62rem; color: rgba(255,255,255,0.27); }
.panel-foot-left strong { color: rgba(255,255,255,0.55); font-family: 'JetBrains Mono', monospace; }
.panel-foot-brand { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; color: var(--gold-mid); }

/* Floating card on panel */
.float-badge {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.float-badge-val { font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; font-weight: 500; color: var(--emerald); line-height: 1.2; }
.float-badge-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 2px; }
.float-badge-2 {
  position: absolute;
  bottom: -14px; left: -14px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.float-badge-2 .float-badge-val { color: var(--gold-mid); }
.float-badge-2 .float-badge-lbl { color: rgba(255,255,255,0.35); }

/* Hero bottom stats strip */
.hero-stats-strip {
  position: relative; z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.25);
}
.hss-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.hss-item {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hss-item:first-child { padding-left: 0; }
.hss-item:last-child { border-right: none; }
.hss-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.1;
  letter-spacing: -0.02em;
}
.hss-label { font-size: 0.68rem; color: rgba(255,255,255,0.34); margin-top: 3px; letter-spacing: 0.02em; font-weight: 400; }

/* Live toast */
#live-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--emerald);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; color: var(--text);
  opacity: 0; transform: translateY(10px) scale(0.97);
  transition: opacity .3s, transform .3s;
  max-width: 280px; pointer-events: none;
}
#live-toast.show { opacity: 1; transform: translateY(0) scale(1); }
.toast-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; }
.toast-merchant { font-weight: 600; color: var(--navy); }
.toast-amount { font-family: 'JetBrains Mono', monospace; font-weight: 700; color: var(--emerald); }

/* ──────────────────────────────────────
   SOCIAL PROOF / TRUST ROW
────────────────────────────────────── */
.trust-row {
  border-bottom: 1px solid var(--border);
  background: var(--off);
  padding: 20px 48px;
}
.trust-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }
.trust-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-logo-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; color: var(--muted);
  letter-spacing: -0.01em; opacity: 0.7;
}
.trust-logo-item svg { color: var(--body); opacity: 0.5; }
.trust-compliance {
  margin-left: auto;
  display: flex;
  gap: 8px;
}
.comp-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 5px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.comp-badge.pci  { background: #EDF2FF; color: #3451B2; border: 1px solid #C5D0F5; }
.comp-badge.iso  { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.comp-badge.ssl  { background: #FEF9EC; color: #7A4600; border: 1px solid #FDE68A; }

/* ──────────────────────────────────────
   SECTION COMMONS
────────────────────────────────────── */
.section-wrap { max-width: 1260px; margin: 0 auto; padding: 96px 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before { content: ''; width: 16px; height: 1.5px; }
.label-navy { color: var(--navy); }
.label-navy::before { background: var(--navy); }
.label-gold  { color: var(--gold); }
.label-gold::before  { background: var(--gold); }
.label-teal  { color: var(--teal); }
.label-teal::before  { background: var(--teal); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 14px;
}
h2 em { font-style: italic; }
.section-intro { font-size: 0.96rem; color: var(--body); line-height: 1.8; max-width: 540px; }

/* ──────────────────────────────────────
   PRODUCT SECTIONS
────────────────────────────────────── */
.product-section { border-top: 1px solid var(--border); }
.product-section.alt-bg { background: var(--off); }

.product-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.product-grid.flip { direction: rtl; }
.product-grid.flip > * { direction: ltr; }

.product-tag {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 5px; margin-bottom: 14px;
}
.tag-navy  { background: #EDF0F8; color: var(--navy); border: 1px solid #D0D8EC; }
.tag-gold  { background: var(--gold-lt); color: #7A4600; border: 1px solid #F0D88A; }
.tag-teal  { background: var(--teal-lt); color: var(--teal); border: 1px solid #B0D8E5; }

.product-text p {
  font-size: 0.92rem; color: var(--body); line-height: 1.8;
  margin-bottom: 28px;
}

.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem; color: var(--body); line-height: 1.5;
  transition: padding-left .2s, background .2s, border-radius .2s;
  border-radius: 6px; margin: 0 -8px; padding-left: 8px; padding-right: 8px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li:hover { background: var(--off); padding-left: 14px; }
.fi-check { flex-shrink: 0; margin-top: 1px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.fi-check.navy  { background: rgba(11,31,58,0.07); color: var(--navy); }
.fi-check.gold  { background: var(--gold-lt); color: var(--gold); }
.fi-check.teal  { background: var(--teal-lt); color: var(--teal); }
.feat-name { font-weight: 600; color: var(--text); display: block; margin-bottom: 2px; }

.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.86rem; font-weight: 600;
  text-decoration: none;
  transition: gap .15s;
}
.product-link:hover { gap: 10px; }
.product-link.navy { color: var(--navy); }
.product-link.gold { color: var(--gold); }
.product-link.teal { color: var(--teal); }

/* ── Mockup panels ── */
.mockup-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mockup-card.dark {
  background: var(--navy);
  border-color: rgba(255,255,255,0.08);
}
.mockup-topbar {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--off);
}
.mockup-topbar.dark-bar {
  background: var(--navy-mid);
  border-bottom-color: rgba(255,255,255,0.07);
}
.mockup-bar-title { font-size: 0.72rem; font-weight: 600; color: var(--body); }
.mockup-topbar.dark-bar .mockup-bar-title { color: rgba(255,255,255,0.6); }
.mockup-body { padding: 18px; }

/* Gateway mockup */
.gw-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.gw-stat {
  background: var(--off); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px;
}
.gw-stat-val { font-family: 'JetBrains Mono', monospace; font-size: 1rem; color: var(--navy); font-weight: 500; }
.gw-stat-val.green { color: var(--emerald); }
.gw-stat-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-top: 2px; }

.gw-route-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: 8px; margin-bottom: 8px;
}
.gw-route-item:last-child { margin-bottom: 0; }
.gw-route-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); flex: 1; }
.gw-route-vol { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--body); margin-right: 12px; }
.gw-bar-wrap { width: 80px; height: 4px; background: var(--border); border-radius: 3px; overflow: hidden; margin-right: 10px; }
.gw-bar { height: 100%; background: var(--navy); border-radius: 3px; }
.gw-toggle { width: 30px; height: 16px; border-radius: 8px; background: var(--navy); flex-shrink: 0; position: relative; }
.gw-toggle::after { content: ''; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: #fff; top: 2.5px; right: 2.5px; }
.gw-toggle.off { background: var(--border); }
.gw-toggle.off::after { right: auto; left: 2.5px; }

/* Invoice mockup */
.inv-mockup-body { background: #FFFDF8; }
.inv-header { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #F0E8D0; display: flex; justify-content: space-between; align-items: flex-start; }
.inv-from-co { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text); font-weight: 600; }
.inv-from-lbl { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 3px; }
.inv-num { text-align: right; }
.inv-num-val { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--body); }
.inv-date { font-size: 0.62rem; color: var(--muted); margin-top: 2px; }
.inv-line { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #F0E8D0; }
.inv-line:last-of-type { border-bottom: none; }
.inv-line-desc { font-size: 0.78rem; color: var(--text); }
.inv-line-amount { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; color: var(--text); }
.inv-total { display: flex; justify-content: space-between; padding: 11px 0 0; margin-top: 8px; border-top: 2px solid #D4B875; }
.inv-total-label { font-size: 0.75rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.07em; }
.inv-total-val { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold); font-weight: 700; }
.inv-pay-btn {
  display: block; width: 100%; margin-top: 14px;
  background: var(--navy); color: #fff; border: none; border-radius: 7px;
  padding: 9px; font-size: 0.8rem; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: default; letter-spacing: 0.01em;
}
.inv-status { font-size: 0.6rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.inv-status.sent { background: #EDF2FF; color: #3451B2; }
.inv-status.due  { background: var(--gold-lt); color: #7A4600; }

/* Smart IQ mockup */
.iq-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.iq-kpi { background: var(--off); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
.iq-kpi-val { font-family: 'JetBrains Mono', monospace; font-size: 1rem; color: var(--navy); font-weight: 500; }
.iq-kpi-val.green { color: var(--emerald); }
.iq-kpi-val.teal  { color: var(--teal); }
.iq-kpi-val.gold  { color: var(--gold); }
.iq-kpi-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-top: 2px; }
.iq-chart-wrapper { background: var(--off); border: 1px solid var(--border); border-radius: 8px; padding: 14px; margin-bottom: 12px; }
.iq-chart-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 10px; }
.iq-bars { display: flex; gap: 5px; align-items: flex-end; height: 60px; }
.iq-b { flex: 1; border-radius: 3px 3px 0 0; }
.iq-b.lo { background: #C7D9E8; height: 35%; }
.iq-b.md { background: #C7D9E8; height: 55%; }
.iq-b.hi { background: var(--navy); height: 88%; }
.iq-b.mh { background: #C7D9E8; height: 70%; }
.iq-b.sm { background: #C7D9E8; height: 42%; }
.iq-b.xl { background: var(--teal); height: 92%; }
.iq-b.ml { background: #C7D9E8; height: 65%; }
.iq-days { display: flex; gap: 5px; margin-top: 5px; }
.iq-days span { flex: 1; text-align: center; font-size: 0.57rem; color: var(--muted); }
.iq-decline-table { background: var(--off); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
.iq-decline-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 8px; }
.iq-decline-row { display: flex; justify-content: space-between; padding: 5px 0; }
.iq-decline-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.iq-decline-desc { font-size: 0.76rem; color: var(--text); }
.iq-decline-pct { font-family: 'JetBrains Mono', monospace; font-size: 0.76rem; color: var(--body); }

/* ──────────────────────────────────────
   PROCESS SECTION
────────────────────────────────────── */
.process-section { background: var(--navy); }
.process-header { text-align: center; margin-bottom: 56px; }
.process-section .section-label { color: var(--gold-mid); justify-content: center; }
.process-section .section-label::before { background: var(--gold-mid); }
.process-section h2 { color: var(--white); text-align: center; }
.process-section .section-intro { color: rgba(255,255,255,0.55); margin: 0 auto; text-align: center; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, rgba(212,160,23,0.5), rgba(212,160,23,0.15));
  pointer-events: none;
}

.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { padding-right: 0; }

.ps-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold-mid);
  position: relative; z-index: 2;
  transition: background .25s, transform .25s;
}
.process-step:hover .ps-number {
  background: rgba(212,160,23,0.2);
  transform: scale(1.06);
}
.ps-phase { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(212,160,23,0.65); margin-bottom: 5px; }
.ps-days { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.process-step h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.process-step p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ──────────────────────────────────────
   COMMITMENT SECTION
────────────────────────────────────── */
.commitment-section { background: var(--white); border-top: 1px solid var(--border); }
.commitment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.commitment-pledges { display: flex; flex-direction: column; gap: 0; }
.commit-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: background .2s, padding-left .2s, padding-right .2s, border-radius .2s;
  border-radius: 6px; margin: 0 -10px; padding-left: 10px; padding-right: 10px;
}
.commit-item:last-child { border-bottom: none; }
.commit-item:hover { background: var(--off); padding-left: 16px; }
.commit-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--emerald-lt); flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald);
}
.commit-title { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.commit-body  { font-size: 0.8rem; color: var(--body); line-height: 1.55; }

/* Pledge card */
.pledge-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.pledge-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212,160,23,0.15), transparent 60%);
  pointer-events: none;
}
.pledge-number {
  font-family: 'Playfair Display', serif;
  font-size: 6rem; font-weight: 700;
  color: var(--white); line-height: 1;
  letter-spacing: -0.04em;
}
.pledge-number sup { font-size: 2rem; vertical-align: super; color: var(--gold-mid); letter-spacing: 0; }
.pledge-sub { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-top: 6px; margin-bottom: 32px; }
.pledge-sla {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px 20px;
}
.pledge-sla-title { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #34D399; margin-bottom: 6px; }
.pledge-sla-text { font-size: 0.8rem; color: rgba(255,255,255,0.48); line-height: 1.65; }
.pledge-sla-text strong { color: rgba(255,255,255,0.8); }
.pledge-compliance {
  display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap;
}
.pledge-badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 5px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ──────────────────────────────────────
   CONTACT
────────────────────────────────────── */
.contact-section { background: var(--off); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info > p { font-size: 0.92rem; color: var(--body); line-height: 1.78; margin-bottom: 36px; }

.contact-detail-list { display: flex; flex-direction: column; gap: 0; }
.cd-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cd-item:last-child { border-bottom: none; }
.cd-icon-wrap {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.cd-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 2px; }
.cd-value { font-size: 0.86rem; font-weight: 600; color: var(--navy); }

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 38px 36px;
  box-shadow: var(--shadow-lg);
}
.form-head { margin-bottom: 24px; }
.form-head h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-head p  { font-size: 0.84rem; color: var(--body); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1 / -1; }
label { font-size: 0.73rem; font-weight: 600; color: var(--body); letter-spacing: 0.02em; }
input, select, textarea {
  font-family: 'Inter', sans-serif; font-size: 0.85rem;
  color: var(--text); background: var(--off);
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 9px 12px; width: 100%;
  transition: border-color .15s, background .15s, box-shadow .15s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.08);
}
input.err, select.err { border-color: var(--red); }
textarea { resize: vertical; min-height: 100px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%237A8EA8' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }

.form-submit-btn {
  width: 100%;
  padding: 13px 20px;
  background: var(--navy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  border: none; border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(11,31,58,0.25);
  letter-spacing: 0.01em;
}
.form-submit-btn:hover { background: var(--navy-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,31,58,0.3); }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-fine { font-size: 0.72rem; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.5; }
.form-fine a { color: var(--navy); }
.form-error-box { display: none; margin-top: 12px; padding: 10px 14px; background: #FEF2F2; border: 1px solid #FECACA; border-radius: 7px; font-size: 0.8rem; color: #B91C1C; }

.form-success { display: none; text-align: center; padding: 20px 0; }
.success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--emerald-lt); border: 1px solid rgba(13,110,78,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--emerald);
}
.form-success h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 0.86rem; color: var(--body); line-height: 1.65; }
.form-success .note { margin-top: 10px; font-size: 0.78rem; color: var(--gold); }

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  max-width: 1260px; margin: 0 auto;
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.footer-logo-wrap {
  display: flex; align-items: center; gap: 10px;
}
.footer-icon {
  width: 28px; height: 28px; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.25); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; color: var(--gold-mid);
}
.footer-logo-text { font-size: 0.95rem; font-weight: 700; color: var(--white); letter-spacing: -0.015em; }
.footer-logo-text span { color: var(--gold-mid); }
.footer-tagline { font-size: 0.65rem; color: rgba(255,255,255,0.3); margin-top: 2px; }

.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

.footer-right { text-align: right; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-pci { font-size: 0.62rem; font-weight: 700; color: rgba(212,160,23,0.6); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* ── FADE-IN ANIMATION ── */
.fi {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.25,1,.5,1), transform .55s cubic-bezier(.25,1,.5,1);
}
.fi.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .nav-actions { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 32px 64px; }
  .hero-sub { max-width: 100%; }
  .product-grid, .product-grid.flip { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .commitment-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hss-inner { grid-template-columns: repeat(2,1fr); gap: 16px; padding: 22px 32px; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-timeline::before { display: none; }
  nav { padding: 0 24px; }
  .section-wrap { padding: 72px 32px; }
  .nav-center { display: none; }
  .trust-row { padding: 18px 32px; }
  .footer-inner { padding: 36px 32px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-right { text-align: left; }
}
@media (max-width: 640px) {
    
  .hero-inner { padding: 44px 20px 56px; }
  .section-wrap { padding: 60px 20px; }
  nav { padding: 0 18px; }
  .hss-inner { grid-template-columns: 1fr 1fr; padding: 18px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .pledge-number { font-size: 4.5rem; }
  .process-timeline { grid-template-columns: 1fr; }
  .compliance-inner { gap: 14px; }
  .trust-compliance { flex-wrap: wrap; }
  footer { padding: 0; }
  .footer-inner { padding: 28px 20px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
}

/* ──────────────────────────────────────
   INTERNAL PAGE HERO (About / Products / Features)
────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 64px 48px 56px;
}
.page-hero .hero-grid { background-size: 48px 48px; }
.page-hero-inner {
  position: relative; z-index: 5;
  max-width: 1260px; margin: 0 auto;
  text-align: center;
}
.page-hero .hero-eyebrow { justify-content: center; display: inline-flex; }
.page-hero h1 { font-size: clamp(2.1rem, 3.2vw, 3.1rem); }
.page-hero .hero-sub { max-width: 620px; margin: 0 auto; }
.crumb-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.crumb-row a { color: rgba(255,255,255,0.55); text-decoration: none; }
.crumb-row a:hover { color: #fff; }

/* ──────────────────────────────────────
   VALUES / PILLARS GRID
────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 26px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-dk); }
.value-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-icon.navy { background: rgba(11,31,58,0.07); color: var(--navy); }
.value-icon.gold { background: var(--gold-lt); color: var(--gold); }
.value-icon.teal { background: var(--teal-lt); color: var(--teal); }
.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--body); line-height: 1.7; }

/* ──────────────────────────────────────
   STORY / STAT PANEL (About)
────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
.story-stat-panel {
  background: var(--navy); border-radius: 16px; padding: 8px;
  box-shadow: var(--shadow-xl); position: relative; overflow: hidden;
}
.story-stat-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(212,160,23,0.14), transparent 55%);
  pointer-events: none;
}
.story-stat-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.story-stat {
  background: rgba(255,255,255,0.03); padding: 30px 26px;
  border: 1px solid rgba(255,255,255,0.06);
}
.story-stat-val {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700;
  color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.story-stat-val.gold { color: var(--gold-mid); }
.story-stat-val.green { color: #34D399; }
.story-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 8px; line-height: 1.5; }

/* ──────────────────────────────────────
   MILESTONE TIMELINE (About) — reuses process-timeline base
────────────────────────────────────── */
.milestones-section { background: var(--off); border-top: 1px solid var(--border); }
.milestones-section .section-label { justify-content: center; }
.milestones-section h2, .milestones-section .section-intro { text-align: center; margin: 0 auto; }
.milestone-timeline {
  position: relative; max-width: 760px; margin: 56px auto 0;
}
.milestone-timeline::before {
  content: ''; position: absolute; left: 19px; top: 6px; bottom: 6px; width: 1.5px;
  background: linear-gradient(180deg, var(--gold-mid), var(--border-dk));
}
.milestone-item { position: relative; padding: 0 0 40px 56px; }
.milestone-item:last-child { padding-bottom: 0; }
.milestone-dot {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gold-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; font-weight: 700; color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.milestone-item h4 { font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.milestone-item p { font-size: 0.84rem; color: var(--body); line-height: 1.7; max-width: 520px; }

/* ──────────────────────────────────────
   TEAM / LEADERSHIP GRID (About)
────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { text-align: left; }
.team-avatar {
  width: 100%; aspect-ratio: 1/1; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.team-avatar-initials {
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700;
  color: var(--gold-mid); letter-spacing: 0.02em;
}
.team-name { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.team-role { font-size: 0.74rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 0.79rem; color: var(--body); line-height: 1.6; }

/* ──────────────────────────────────────
   FEATURE CATEGORY BLOCKS (Features page)
────────────────────────────────────── */
.feat-cat-section { border-top: 1px solid var(--border); }
.feat-cat-section.alt-bg { background: var(--off); }
.feat-cat-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.feat-cat-count {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--muted);
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 20px; white-space: nowrap;
}
.feat-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 22px; transition: box-shadow .2s, border-color .2s, transform .2s;
}
.feat-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-dk); transform: translateY(-2px); }
.feat-card-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.feat-card-icon.navy { background: rgba(11,31,58,0.07); color: var(--navy); }
.feat-card-icon.gold { background: var(--gold-lt); color: var(--gold); }
.feat-card-icon.teal { background: var(--teal-lt); color: var(--teal); }
.feat-card h5 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.feat-card p { font-size: 0.79rem; color: var(--body); line-height: 1.65; }
.feat-card-tags { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.feat-mini-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; background: var(--off); color: var(--muted);
  border: 1px solid var(--border);
}

/* ──────────────────────────────────────
   FEATURE MATRIX TABLE (Features / Products)
────────────────────────────────────── */
.matrix-wrap {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-md); overflow-x: auto;
}
.matrix-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.matrix-table th {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); text-align: left; padding: 16px 20px; background: var(--off);
  border-bottom: 1px solid var(--border);
}
.matrix-table th.center, .matrix-table td.center { text-align: center; }
.matrix-table td {
  font-size: 0.84rem; color: var(--body); padding: 15px 20px;
  border-bottom: 1px solid var(--border);
}
.matrix-table tr:last-child td { border-bottom: none; }
.matrix-table td.feat-name-cell { font-weight: 600; color: var(--text); }
.matrix-check { color: var(--emerald); display: inline-flex; }
.matrix-dash { color: var(--border-dk); font-weight: 700; }

/* ──────────────────────────────────────
   PRODUCT OVERVIEW CARDS (Products page)
────────────────────────────────────── */
.prod-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod-overview-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 26px; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.prod-overview-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--border-dk); }
.prod-overview-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 14px 0 8px; font-family: 'Playfair Display', serif; }
.prod-overview-card p { font-size: 0.83rem; color: var(--body); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.prod-mini-list { list-style: none; margin-bottom: 20px; }
.prod-mini-list li {
  font-size: 0.78rem; color: var(--body); padding: 6px 0 6px 20px; position: relative;
}
.prod-mini-list li::before {
  content: ''; position: absolute; left: 2px; top: 13px; width: 8px; height: 1.5px;
}

/* ──────────────────────────────────────
   USE-CASE / PERSONA CARDS (Products page)
────────────────────────────────────── */
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.usecase-card {
  border: 1px solid var(--border); border-radius: 12px; padding: 24px;
  background: var(--off);
}
.usecase-card .product-tag { margin-bottom: 12px; }
.usecase-card h5 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.usecase-card p { font-size: 0.8rem; color: var(--body); line-height: 1.65; }

/* ──────────────────────────────────────
   CTA BAND (shared closing section for internal pages)
────────────────────────────────────── */
.cta-band {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 64px 48px; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(212,160,23,0.12), transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.5); font-size: 0.94rem; line-height: 1.75; margin-bottom: 32px; }
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ──────────────────────────────────────
   RESPONSIVE — new components
────────────────────────────────────── */
@media (max-width: 1100px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid, .team-grid, .feat-card-grid, .prod-overview-grid, .usecase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .values-grid, .team-grid, .feat-card-grid, .prod-overview-grid, .usecase-grid, .story-stat-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 20px 40px; }
  .feat-cat-head { flex-direction: column; align-items: flex-start; }
}