/* ═══════════════════════════════════════════════════════════════════════════
   ZCompli — Full Modern Dark FinTech Design System (Rounded Glass Architecture)
   Unified deep navy background (#05070D), smooth pill buttons, generously
   rounded glassmorphism cards (20-32px), glowing ambient blue accents (#0078D7),
   and high-contrast typography.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  /* Brand Accents */
  --brand:         #0078D7;
  --brand-hover:   #0062B3;
  --brand-lift:    #38BDF8;
  --brand-glow:    0 0 35px -5px rgba(0, 120, 215, 0.4);
  --brand-subtle:  rgba(0, 120, 215, 0.12);
  --brass:         #F59E0B;
  --success:       #10B981;

  /* Unified Dark Navy Surfaces */
  --bg-main:       #05070D;
  --bg-surface:    #0A0E1A;
  --bg-card:       rgba(15, 23, 42, 0.65);
  --bg-card-hover: rgba(21, 32, 58, 0.85);
  --border-glass:  rgba(255, 255, 255, 0.08);
  --border-hover:  rgba(0, 120, 215, 0.45);

  /* Typography Colors */
  --text-main:     #F8FAFC;
  --text-muted:    #94A3B8;
  --text-dim:      #64748B;
  --header-h:      4.25rem;

  /* Fonts */
  --display:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --body:          'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --data:          'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* ── Base ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
}

body {
  margin: 0;
  background-color: var(--bg-main);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(0, 120, 215, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(0, 120, 215, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

a { color: var(--brand-lift); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: #FFFFFF; }

::selection { background: var(--brand); color: #FFFFFF; }

:focus-visible { outline: 2px solid var(--brand-lift); outline-offset: 3px; border-radius: 8px; }

[id] { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: clamp(1.2rem, 4vw, 2.5rem);
}

.section { padding-block: clamp(4rem, 8vw, 6rem); }

/* Eyebrow & Badges */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-lift);
  background: var(--brand-subtle);
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 20px rgba(0, 120, 215, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin: 0 auto 1.25rem;
}

.display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: #FFFFFF;
  margin: 0;
}

.section-head { text-align: center; max-width: 62ch; margin: 0 auto 3.25rem; }
.section-head .display { font-size: clamp(1.8rem, 3.8vw, 2.6rem); color: #FFFFFF; }
.section-head p { margin: 1rem 0 0; color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }

.lead { color: var(--text-muted); }
.muted { color: var(--text-muted); }
.mono  { font-family: var(--data); font-variant-numeric: tabular-nums; }

/* ── Modern Pill Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border-glass);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.btn .arr { font-size: 0.95rem; transition: transform 0.2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn--ink {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}
.btn--ink:hover {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: var(--brand-glow);
}

.btn--accent {
  background: linear-gradient(135deg, #0078D7 0%, #0062B3 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: var(--brand-glow);
}
.btn--accent:hover {
  background: linear-gradient(135deg, #0086F0 0%, #0070CE 100%);
  color: #FFFFFF;
  box-shadow: 0 0 35px rgba(0, 120, 215, 0.55);
  transform: translateY(-2px);
}

.btn--small { padding: 0.55rem 1.15rem; font-size: 0.82rem; }

.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--brand-lift);
  box-shadow: none;
  padding-inline: 0.8rem;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

/* ── Sticky Dark Glass Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 13, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-glass);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand img { height: 1.8rem; width: auto; }
.brand-logo--ink   { display: none; }
.brand-logo--paper { display: block; }
.brand-by {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--data);
  font-size: 0.7rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.brand-by strong {
  color: var(--brand-lift);
  font-weight: 600;
}
.brand:hover .brand-by {
  background: rgba(0, 120, 215, 0.14);
  border-color: rgba(56, 189, 248, 0.4);
  color: #FFFFFF;
}

.powered-by-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.powered-by-tag a {
  color: var(--brand-lift);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: color 0.15s ease;
}
.powered-by-tag a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-muted);
  padding-block: 0.4rem;
  position: relative;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-lift);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.site-nav a:hover { color: #FFFFFF; }
.site-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle svg { width: 18px; height: 18px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-open  { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  border-top: 1px solid var(--border-glass);
  padding: 1rem 0 1.5rem;
  background: var(--bg-main);
  border-radius: 0 0 20px 20px;
}
.mobile-nav a {
  display: block;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-glass);
}
.mobile-nav a:hover { color: #FFFFFF; }
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ── Hero Section ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero .display {
  font-size: clamp(2.5rem, 5.8vw, 4.1rem);
  color: #FFFFFF;
  letter-spacing: -0.035em;
  max-width: 20ch;
  margin: 0 auto;
}

.hero .lead {
  margin: 1.5rem auto 0;
  max-width: 66ch;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 400;
}
.hero .lead strong { color: #FFFFFF; font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-email { margin: 1.25rem auto 0; font-size: 0.85rem; color: var(--text-muted); text-align: center; }
.hero-email a { color: var(--brand-lift); text-decoration: underline; text-underline-offset: 3px; }
.hero-email a:hover { color: #FFFFFF; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.75rem;
}
.hero-tags .tag-label {
  font-family: var(--data);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tag {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.38rem 0.95rem;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: #CBD5E1;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}
.tag:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

/* Rounded Stats Glass Bar */
.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  overflow: hidden;
  margin-top: clamp(3.5rem, 6vw, 4.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}
.stat {
  padding: 1.75rem 1.4rem;
  background: rgba(10, 14, 26, 0.88);
  backdrop-filter: blur(16px);
  text-align: center;
}
.stat .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}
.stat .num.accent { color: var(--brand-lift); }
.stat .num.brass  { color: var(--brass); }
.stat .cap {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Platform Registers (Six Pillars) — Rounded Glass Cards ─────────────── */
.reg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.folio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.2rem 1.9rem;
  border-radius: 24px;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 12px 30px -10px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, background 0.25s ease;
}
.folio:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px -10px rgba(0, 120, 215, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.folio-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.folio-code {
  font-family: var(--data);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-lift);
  background: rgba(0, 120, 215, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}
.folio-head {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #FFFFFF;
}

.folio p { margin: 0; font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.folio p strong { color: #FFFFFF; font-weight: 600; }

.folio ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
}
.folio ul li {
  position: relative;
  padding-left: 1.35rem;
  color: #CBD5E1;
  font-weight: 500;
}
.folio ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-lift);
  font-weight: 700;
  font-size: 0.85rem;
}

.folio-foot {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-glass);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.folio-foot .ok { color: var(--success); font-weight: 600; }
.folio-foot a { color: var(--brand-lift); text-decoration: none; font-weight: 600; }
.folio-foot a:hover { color: #FFFFFF; text-decoration: underline; }

/* ── Compliance & Trust Strip — Rounded Glass Cards ──────────────────────── */
.band {
  background: rgba(10, 14, 26, 0.7);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.band-inner { padding-block: clamp(3.5rem, 6vw, 4.5rem); }
.seal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.seal {
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  padding: 1.6rem 1.4rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.seal:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 25px -5px rgba(0, 120, 215, 0.18);
}
.seal .seal-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(0, 120, 215, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--brand-lift);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.seal .seal-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* ── Integrations & Custom Engineering Grid ───────────────────────────────── */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.integ-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.4rem;
  border-radius: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.integ-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 35px -8px rgba(0, 120, 215, 0.25);
}
.integ-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.integ-tag {
  font-family: var(--data);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-lift);
  background: rgba(0, 120, 215, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
}
.integ-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.integ-title {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}
.integ-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Custom Development & Bespoke Plugins Callout Card */
.custom-dev-card {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(14, 23, 47, 0.85) 0%, rgba(10, 14, 26, 0.95) 100%);
  border: 1.5px dashed rgba(56, 189, 248, 0.35);
  border-radius: 26px;
  padding: clamp(1.8rem, 3.5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.custom-dev-card:hover {
  border-color: var(--brand-lift);
  box-shadow: 0 20px 45px -10px rgba(0, 120, 215, 0.25);
}
.custom-dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.custom-dev-head {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #FFFFFF;
}
.custom-dev-text {
  margin: 0 0 1.25rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 65ch;
}
.custom-dev-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.cd-chip {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.custom-dev-action {
  flex-shrink: 0;
}

@media (max-width: 1020px) {
  .integ-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-dev-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .integ-grid { grid-template-columns: 1fr; }
}

/* ── Dedicated White-Label Solution Section ────────────────────────────── */
.whitelabel-section {
  position: relative;
}
.whitelabel-card {
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 120, 215, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, rgba(14, 23, 47, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%);
  border: 1.5px solid rgba(0, 120, 215, 0.4);
  border-radius: 32px;
  padding: clamp(2.5rem, 5vw, 3.75rem);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 45px -10px rgba(0, 120, 215, 0.3);
  overflow: hidden;
}
.whitelabel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(0, 120, 215, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: var(--brand-lift);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-lift);
  box-shadow: 0 0 10px var(--brand-lift);
  animation: pulseDot 2s infinite ease-in-out;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.whitelabel-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.whitelabel-copy .display {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  color: #FFFFFF;
}
.whitelabel-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 1.25rem 0 2rem;
}
.whitelabel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.whitelabel-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wl-pill {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.25rem 1.4rem;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.wl-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 120, 215, 0.45);
  transform: translateX(4px);
}
.wl-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.wl-txt h4 {
  margin: 0 0 0.35rem;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
}
.wl-txt p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.wl-txt code {
  font-family: var(--data);
  color: var(--brand-lift);
  background: rgba(0, 120, 215, 0.16);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .whitelabel-hero-grid { grid-template-columns: 1fr; }
}

/* ── Modern Pricing Tiers — Rounded Glass Panels ─────────────────────────── */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.25rem;
  align-items: stretch;
}
.tier {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.4rem 2rem;
  border-radius: 26px;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

/* Growth Tier (Featured) */
.tier--featured {
  background: linear-gradient(180deg, rgba(14, 22, 45, 0.95) 0%, rgba(10, 14, 26, 0.95) 100%);
  border: 2px solid var(--brand);
  box-shadow: var(--brand-glow), 0 20px 45px -10px rgba(0, 0, 0, 0.7);
  transform: scale(1.02);
  z-index: 2;
}
.tier--featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 0 45px rgba(0, 120, 215, 0.55), 0 25px 55px -10px rgba(0, 0, 0, 0.8);
}
.tier--featured .tier-name { color: #FFFFFF; }
.tier--featured .tier-for,
.tier--featured .price-note,
.tier--featured .band-label { color: var(--text-muted); }
.tier--featured .amount { color: #FFFFFF; }
.tier--featured .rule-soft { background: rgba(255, 255, 255, 0.1); }
.tier--featured li { color: #E2E8F0; }
.tier--featured li::before { color: var(--brand-lift); }
.tier--featured .band-row { border-bottom-color: rgba(255, 255, 255, 0.08); color: #E2E8F0; }

.tier-head { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.tier-name {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}
.flag {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 120, 215, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: var(--brand-lift);
  white-space: nowrap;
}
.flag--brass {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--brass);
}
.tier-for { margin: 0; font-size: 0.92rem; color: var(--text-muted); min-height: 2.8em; line-height: 1.5; }

.price { display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.amount {
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #FFFFFF;
}
.per { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.price-note { margin: 0; font-size: 0.82rem; color: var(--text-muted); }

.rule-soft { height: 1px; background: var(--border-glass); border: 0; margin: 0.25rem 0; }

.band { display: flex; flex-direction: column; gap: 0; }
.band-label {
  font-family: var(--data);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.6rem;
  font-weight: 600;
}
.band-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.48rem 0;
  border-bottom: 1px dashed var(--border-glass);
  font-size: 0.9rem;
  color: #CBD5E1;
}
.band-row .fig { font-family: var(--data); font-variant-numeric: tabular-nums; font-weight: 600; color: #FFFFFF; }
.band-row .fig a {
  color: var(--brand-lift);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.15s ease;
}
.band-row .fig a:hover {
  color: #FFFFFF;
}

ul.points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}
ul.points li { position: relative; padding-left: 1.35rem; font-weight: 500; color: #CBD5E1; }
ul.points li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-lift); font-weight: 700; }

.cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border-glass);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  cursor: pointer;
}
.cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.tier--featured .cta {
  background: linear-gradient(135deg, #0078D7 0%, #0062B3 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: var(--brand-glow);
}
.tier--featured .cta:hover {
  background: linear-gradient(135deg, #0086F0 0%, #0070CE 100%);
  box-shadow: 0 0 35px rgba(0, 120, 215, 0.55);
  transform: translateY(-2px);
}

.link-row { text-align: center; margin-top: 2rem; font-size: 0.92rem; font-weight: 500; color: var(--text-muted); }
.link-row a { color: var(--brand-lift); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ Accordion — Rounded Panels ──────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[data-open="true"] {
  border-color: var(--border-hover);
  box-shadow: 0 0 25px rgba(0, 120, 215, 0.18);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: 0;
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease;
}
.faq-q:hover { color: var(--brand-lift); }
.faq-q svg { flex: 0 0 auto; width: 16px; height: 16px; transition: transform 0.25s ease; color: var(--text-muted); }
.faq-item[data-open="true"] .faq-q svg { transform: rotate(180deg); color: var(--brand-lift); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-panel p { margin: 0; padding: 0 1.5rem 1.35rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.faq-panel a { color: var(--brand-lift); font-weight: 600; }
.faq-item[data-open="true"] .faq-panel { max-height: 320px; }

/* ── Immersive Final CTA — Extra-Rounded Container ───────────────────────── */
.cta-panel {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 120, 215, 0.32) 0%, transparent 65%),
    linear-gradient(135deg, #0A0E1A 0%, #0F172A 100%);
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  color: #FFFFFF;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.cta-panel .display { color: #FFFFFF; font-size: clamp(2rem, 4.2vw, 2.8rem); letter-spacing: -0.03em; }
.cta-panel p { color: var(--text-muted); max-width: 56ch; margin: 1.1rem auto 0; font-size: 1.05rem; line-height: 1.65; }
.cta-panel .btn { margin-top: 2.25rem; }
.cta-email { margin-top: 1.4rem; font-size: 0.85rem; color: var(--text-muted); }
.cta-email a { color: var(--brand-lift); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.cta-email a:hover { color: #FFFFFF; }

/* ── Modern Footer ───────────────────────────────────────────────────────── */
.site-footer {
  background: rgba(5, 7, 13, 0.95);
  border-top: 1px solid var(--border-glass);
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 4rem 3rem;
}
.footer-brand img { height: 1.5rem; width: auto; margin-bottom: 1rem; }
.footer-brand p { margin: 0; font-size: 0.88rem; color: var(--text-muted); max-width: 36ch; line-height: 1.6; }
.footer-col h4 {
  margin: 0 0 1.1rem;
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; transition: color 0.15s ease; }
.footer-col a:hover { color: #FFFFFF; }
.footer-col li { font-size: 0.88rem; color: var(--text-muted); }

.footer-bar {
  border-top: 1px solid var(--border-glass);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bar a {
  color: var(--brand-lift);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.footer-bar a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ── Pricing Page Comparison Table ───────────────────────────────────────── */
.sheet { max-width: 1140px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) clamp(1.2rem, 4vw, 2.5rem) 4.5rem; }
.masthead {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-glass);
}
.masthead .display { font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: #FFFFFF; }
.standfirst { margin: 0; max-width: 65ch; color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; }

.matrix-wrap { margin-top: 4rem; }
.matrix-wrap h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
}
.section-note { margin: 0 0 1.6rem; color: var(--text-muted); font-size: 0.96rem; max-width: 68ch; }

.scroller {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  padding: 1.75rem 2rem;
}
.scroller table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.scroller caption { text-align: left; caption-side: top; padding-bottom: 1rem; color: var(--text-muted); font-size: 0.85rem; }
.scroller thead th {
  text-align: left;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  padding: 0 0.85rem 0.85rem;
  border-bottom: 2px solid var(--border-glass);
}
.scroller thead th:first-child { padding-left: 0; }
.scroller tbody th {
  text-align: left;
  font-weight: 500;
  padding: 0.75rem 0.85rem 0.75rem 0;
  border-bottom: 1px solid var(--border-glass);
  color: #FFFFFF;
}
.scroller tbody td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border-glass);
  color: #CBD5E1;
  font-variant-numeric: tabular-nums;
}
.scroller tbody tr:hover td,
.scroller tbody tr:hover th {
  background: rgba(255, 255, 255, 0.03);
}
.scroller tbody tr.group th {
  font-family: var(--data);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-lift);
  padding-top: 1.75rem;
  border-bottom: 1.5px solid var(--border-glass);
  font-weight: 700;
}
.scroller tbody tr.group td { padding-top: 1.75rem; border-bottom: 1.5px solid var(--border-glass); }
.scroller .yes { color: var(--success); font-weight: 700; font-family: var(--data); }
.scroller .no  { color: var(--text-dim); font-family: var(--data); }

.notes {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem 2.25rem;
}
.note h3 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-lift);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.note p { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── Responsive Media Queries ────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .reg { grid-template-columns: repeat(2, 1fr); }
  .seal-row { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .tiers { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-4px); }
  .tier-for { min-height: 0; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .reg { grid-template-columns: 1fr; }
  .seal-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
