:root {
  --bg: #f4f7ff;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --surface-alt: #edf3ff;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;
  --line: rgba(15, 23, 42, 0.10);
  --line-strong: rgba(15, 23, 42, 0.18);
  --brand: #2563eb;
  --brand-deep: #4f46e5;
  --brand-ink: #1e1b4b;
  --cyan: #38bdf8;
  --green: #16a34a;
  --amber: #d97706;
  --violet: #6d28d9;
  --glow: rgba(79, 70, 229, 0.16);
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.06);
  --shadow-strong: 0 20px 54px rgba(79, 70, 229, 0.16);
  --shadow-lux: 0 34px 90px rgba(15, 23, 42, 0.10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7ff 32%, #eef2ff 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 96px 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(238,244,251,0.92));
}

.section-head { margin-bottom: 42px; }
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: end;
}

.section-eyebrow,
.eyebrow,
.mini-eyebrow,
.trust-kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-lead {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  max-width: 820px;
}
.section-lead.wide { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 16px 0;
  background: rgba(244, 247, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { width: 252px; height: auto; }
.brand-text { display: none; }

.nav-links,
.nav-actions,
.hero-actions,
.proof-strip,
.signal-grid,
.solution-grid,
.reg-grid,
.guard-grid,
.contact-grid,
.cta-actions,
.trust-grid,
.problem-grid,
.module-grid { display: grid; }

.nav-links {
  grid-auto-flow: column;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  grid-auto-flow: column;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-large { min-height: 54px; padding: 0 24px; font-size: 15px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: var(--shadow-strong);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.9);
  border-color: var(--line-strong);
}

.hero { padding: 62px 0 38px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  gap: 38px;
  align-items: start;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  max-width: 820px;
}
.hero-text {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 20px;
}
.hero-actions {
  grid-auto-flow: column;
  justify-content: start;
  gap: 14px;
  margin-top: 30px;
}
.proof-strip {
  grid-template-columns: repeat(3, minmax(0, max-content));
  align-items: start;
  gap: 12px;
  margin-top: 28px;
}
.proof-strip span,
.module-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.hero-visual { display: grid; gap: 18px; }
.visual-card,
.problem-card,
.module-card,
.solution-card,
.reg-card,
.guard-card,
.contact-card,
.side-card,
.compare-panel,
.industry-panel,
.company-panel,
.cta-panel,
.platform-flow,
.architecture-stack {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.visual-card-main { padding: 22px; box-shadow: var(--shadow-lux); }
.visual-card-side {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(238,244,251,0.95));
}
.visual-card-side h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.browser-dots { display: flex; gap: 8px; }
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15,23,42,0.18);
}
.topbar-label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.signal-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.signal-label {
  margin: 0 0 10px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}
.signal-value {
  margin: 0;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.signal-note {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}
.tone-blue .signal-value { color: var(--brand); }
.tone-green .signal-value { color: var(--green); }
.tone-amber .signal-value { color: var(--amber); }
.tone-violet .signal-value { color: var(--violet); }

.board-card,
.compare-panel {
  margin-top: 16px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.board-row,
.compare-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.10);
}
.board-row:last-child,
.compare-row:last-child { border-bottom: 0; }
.board-row span,
.compare-row span { color: var(--text-soft); }
.board-row strong,
.compare-row strong { color: var(--text); font-size: 14px; }

.trust-band { padding: 12px 0 56px; }
.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.trust-grid article {
  min-height: 174px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.trust-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.problem-card,
.solution-card,
.reg-card,
.guard-card,
.contact-card,
.side-card,
.module-card { padding: 24px; }

.problem-card h3,
.module-card h3,
.solution-card h3,
.reg-card h3,
.guard-card h3,
.contact-card h3,
.side-card h3,
.company-panel h2,
.platform-flow h3,
.industry-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.problem-card p,
.module-card p,
.solution-card p,
.reg-card p,
.guard-card p,
.contact-card p,
.side-card p,
.industry-panel p,
.company-copy p,
.flow-grid p { margin: 0; color: var(--text-soft); }

.platform-flow { margin-top: 28px; padding: 28px; }
.flow-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.flow-grid article {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.flow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 95, 255, 0.08);
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}
.flow-grid h4 { margin: 0 0 8px; font-size: 18px; }

.module-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.module-card {
  position: relative;
  overflow: hidden;
  min-height: 218px;
}
.module-card.featured {
  background: linear-gradient(135deg, rgba(11,95,255,0.95), rgba(6,43,116,0.96));
  color: #fff;
  box-shadow: 0 28px 70px rgba(11, 95, 255, 0.18);
}
.module-card.featured p,
.module-card.featured .module-index { color: rgba(255,255,255,0.88); }
.module-card.featured .module-index {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}

.solution-grid,
.reg-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.guard-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.industry-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 28px;
}

.architecture-layout,
.why-grid,
.company-panel,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: start;
}
.architecture-stack { margin-top: 28px; padding: 26px; }
.stack-layer,
.stack-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,23,42,0.12);
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  font-size: 14px;
  font-weight: 700;
}
.stack-layer + .stack-layer,
.stack-layer + .stack-row,
.stack-row + .stack-row,
.stack-row + .stack-layer { margin-top: 12px; }
.stack-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stack-layer.highlight {
  background: linear-gradient(135deg, rgba(11,95,255,0.10), rgba(14,165,233,0.10));
  border-color: rgba(11,95,255,0.25);
}
.side-column { display: grid; gap: 18px; }

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  color: var(--text-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.check-list.compact li { margin: 8px 0; }

.prompt-guard { display: grid; gap: 28px; }
.guard-grid { margin-top: 4px; }
.compare-panel { padding: 8px 24px; }
.compare-row.emphasis {
  border-radius: 18px;
  padding-left: 14px;
  padding-right: 14px;
  background: linear-gradient(135deg, rgba(11,95,255,0.08), rgba(14,165,233,0.08));
  border-bottom: 0;
  margin-top: 6px;
}
.company-panel,
.cta-panel { padding: 34px; }
.company-copy { display: grid; gap: 16px; }
.cta-section {
  background: linear-gradient(180deg, rgba(244,248,252,0.35), rgba(255,255,255,0.9));
}
.cta-actions {
  grid-auto-flow: row;
  gap: 12px;
  align-content: start;
}
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-card a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}
.contact-card a:hover { text-decoration: underline; }

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.88);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.footer-logo {
  width: 248px;
  height: auto;
  margin-bottom: 10px;
}
.footer-inner p { margin: 0; }
.footer-copy {
  color: var(--text-muted);
  text-align: right;
}

@media (max-width: 1180px) {
  .hero-grid,
  .architecture-layout,
  .why-grid,
  .company-panel,
  .cta-panel,
  .split-head,
  .industry-panel { grid-template-columns: 1fr; }

  .problem-grid,
  .guard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .trust-grid,
  .solution-grid,
  .reg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .brand-logo { width: 148px; }
  .nav-shell { min-height: 66px; }
  .proof-strip,
  .hero-actions,
  .nav-actions { grid-auto-flow: row; justify-content: start; }
  .proof-strip { grid-template-columns: repeat(2, minmax(0, max-content)); }
  .module-grid,
  .flow-grid,
  .signal-grid,
  .contact-grid,
  .stack-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .hero { padding-top: 34px; }
  .hero-copy h1 { font-size: clamp(40px, 12vw, 58px); }
  .trust-grid,
  .problem-grid,
  .solution-grid,
  .reg-grid,
  .guard-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy { text-align: left; }
  .container { width: min(var(--container), calc(100% - 28px)); }
}

.story-grid {
  display: grid;
  gap: 28px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.story-copy h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.story-index {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-sub {
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 700;
}

.story-copy p:last-child {
  margin-bottom: 0;
  color: var(--text-soft);
}

.story-media {
  position: relative;
}

.story-media img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  background: #fff;
}

@media (max-width: 980px) {
  .story-card {
    grid-template-columns: 1fr;
  }
}

.story-card,
.module-card,
.solution-card,
.reg-card,
.guard-card,
.problem-card,
.trust-grid article {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.story-card:hover,
.module-card:hover,
.solution-card:hover,
.reg-card:hover,
.guard-card:hover,
.problem-card:hover,
.trust-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.10);
}

#screens.section.section-soft {
  padding-top: 112px;
}

.contact-grid {
  align-items: stretch;
}

.site-footer {
  margin-top: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,250,255,0.96));
}

@media (max-width: 760px) {
  .trust-band { padding: 10px 0 40px; }
  #screens.section.section-soft { padding-top: 88px; }
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 18px 44px rgba(79, 70, 229, 0.22);
}
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(237,242,255,0.94));
}
.visual-card-side,
.story-card,
.module-card,
.solution-card,
.reg-card,
.guard-card,
.contact-card,
.side-card,
.industry-panel,
.company-panel,
.cta-panel,
.platform-flow,
.architecture-stack,
.problem-card,
.trust-grid article {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,249,255,0.92));
}
.stack-layer.highlight,
.compare-row.emphasis {
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(109,40,217,0.10));
  border-color: rgba(79,70,229,0.24);
}

.nav-industries {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-industries-link::after {
  content: "▾";
  margin-left: 6px;
  font-size: 11px;
  color: var(--text-muted);
}
.industries-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-38%);
  min-width: 680px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 28px 70px rgba(15,23,42,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-industries:hover .industries-menu,
.nav-industries:focus-within .industries-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-38%) translateY(0);
}
.industries-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}
.industries-menu-kicker,
.industry-bucket-kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.industries-menu a {
  display: block;
  margin: 0 0 8px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.industries-menu a:hover {
  background: rgba(79,70,229,0.06);
  color: var(--brand-deep);
}
.industries-showcase {
  margin-top: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,245,255,0.96));
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-soft);
}
.industry-buckets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.industry-bucket {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,255,0.94));
  border: 1px solid rgba(15,23,42,0.08);
}
.industry-bucket h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.industry-link-grid {
  display: grid;
  gap: 14px;
}
.industry-link-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  border: 1px solid rgba(15,23,42,0.08);
  color: var(--text);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.industry-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79,70,229,0.18);
  box-shadow: 0 24px 60px rgba(15,23,42,0.08);
}
.industry-link-card span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.industry-link-card small {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .industry-buckets { grid-template-columns: 1fr; }
  .industries-menu {
    left: 0;
    transform: none;
    min-width: 560px;
  }
  .nav-industries:hover .industries-menu,
  .nav-industries:focus-within .industries-menu {
    transform: translateY(0);
  }
}
@media (max-width: 980px) {
  .industries-showcase { padding: 22px; }
  .industries-menu { display: none; }
}

.platform-flow-enterprise {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,255,0.96));
}
.pipeline-head {
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
  align-items: end;
}
.pipeline-lead {
  max-width: 720px;
  font-size: 17px;
}
.pipeline-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 10px 0 22px;
  z-index: 1;
}
.pipeline-rail::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 20px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 52%, #38bdf8 100%);
  opacity: 0.95;
}
.pipeline-rail span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 118px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(15,23,42,0.04);
}
.pipeline-rail span::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand);
  box-shadow: 0 0 0 8px rgba(37,99,235,0.10);
}
.pipeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.pipeline-grid::before {
  content: "";
  position: absolute;
  top: 88px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(37,99,235,0.22), rgba(124,58,237,0.20), rgba(56,189,248,0.20));
  z-index: 0;
}
.pipeline-card {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.98));
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 20px 44px rgba(15,23,42,0.06);
  min-height: 460px;
}
.pipeline-card::after {
  content: "";
  position: absolute;
  top: 84px;
  right: -16px;
  width: 16px;
  height: 2px;
  background: rgba(100,116,139,0.45);
}
.pipeline-card::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -18px;
  border-left: 6px solid rgba(100,116,139,0.55);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.pipeline-card:last-child::after,
.pipeline-card:last-child::before { display: none; }
.pipeline-card-top {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}
.pipeline-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(99,102,241,0.10);
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.pipeline-step-label {
  margin: 4px 0 2px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pipeline-card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.pipeline-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
  min-height: 98px;
}
.pipeline-bullets {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}
.pipeline-bullets li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}
.pipeline-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(37,99,235,0.72);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.10);
}
.pipeline-visual {
  margin-top: auto;
  min-height: 160px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.08);
  background: linear-gradient(180deg, #f8fbff, #f1f5ff);
  position: relative;
  overflow: hidden;
}
.pipeline-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.20), transparent 50%);
  pointer-events: none;
}
.visual-discover {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.visual-discover::after,
.visual-discover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(99,102,241,0.18);
  transform: translateX(-50%);
}
.visual-discover::before {
  left: 18px;
  right: 18px;
  top: 50%;
  bottom: auto;
  width: auto;
  height: 2px;
  transform: translateY(-50%);
}
.visual-node, .visual-core {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(15,23,42,0.08);
  font-size: 12px;
  font-weight: 800;
}
.visual-core {
  grid-column: 1 / span 2;
  justify-self: center;
  min-width: 128px;
  background: linear-gradient(180deg, rgba(99,102,241,0.14), rgba(59,130,246,0.08));
  color: var(--brand-ink);
}
.visual-classify { display: grid; gap: 14px; }
.risk-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
}
.risk-bar {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: rgba(148,163,184,0.20);
  overflow: hidden;
}
.risk-bar::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  border-radius: inherit;
}
.bar-low::after { width: 34%; background: linear-gradient(90deg, #22c55e, #4ade80); }
.bar-medium::after { width: 60%; background: linear-gradient(90deg, #d97706, #facc15); }
.bar-high::after { width: 86%; background: linear-gradient(90deg, #ef4444, #fb923c); }
.visual-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.visual-chip {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.chip-blue { background: rgba(37,99,235,0.10); color: var(--brand); }
.chip-amber { background: rgba(217,119,6,0.12); color: var(--amber); }
.visual-enforce {
  display: grid;
  gap: 14px;
  align-content: center;
}
.gate-top, .gate-bottom {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gate-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.90);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}
.gate-pill.strong { background: rgba(99,102,241,0.14); color: var(--brand-ink); }
.gate-pill.success { background: rgba(22,163,74,0.14); color: var(--green); }
.visual-monitor {
  display: grid;
  gap: 18px;
  align-content: center;
}
.monitor-chart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 12px;
  min-height: 72px;
  padding: 10px 8px 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(99,102,241,0.06), rgba(255,255,255,0.44));
}
.chart-col {
  border-radius: 12px 12px 4px 4px;
  min-height: 36px;
  position: relative;
}
.col-green { min-height: 44px; background: linear-gradient(180deg, #16a34a, #4ade80); }
.col-amber { min-height: 32px; background: linear-gradient(180deg, #d97706, #fbbf24); }
.col-red { min-height: 50px; background: linear-gradient(180deg, #ef4444, #fb7185); }
.monitor-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.monitor-track span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(148,163,184,0.22);
}
.monitor-track .alert { background: linear-gradient(90deg, #ef4444, #fb923c); }
.visual-evidence {
  display: grid;
  place-items: center;
}
.evidence-sheet {
  width: 110px;
  height: 132px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,245,255,0.98));
  border: 1px solid rgba(15,23,42,0.08);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
}
.evidence-sheet span {
  display: block;
  width: 64px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148,163,184,0.35);
}
.evidence-sheet span:last-child { width: 52px; }
.evidence-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 72px;
  padding: 0 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(22,163,74,0.24);
}
.stage-discover .pipeline-step-number,
.stage-discover .pipeline-rail-dot { color: #2563eb; }
.stage-classify .pipeline-step-number { color: #d97706; }
.stage-enforce .pipeline-step-number { color: #6d28d9; }
.stage-monitor .pipeline-step-number { color: #16a34a; }
.stage-evidence .pipeline-step-number { color: #0ea5e9; }
.stage-discover::marker {}
.stage-discover .pipeline-card-top::before,
.stage-classify .pipeline-card-top::before,
.stage-enforce .pipeline-card-top::before,
.stage-monitor .pipeline-card-top::before,
.stage-evidence .pipeline-card-top::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.52);
}
.stage-discover .pipeline-card-top::before { border: 5px solid #2563eb; }
.stage-classify .pipeline-card-top::before { border: 5px solid #d97706; }
.stage-enforce .pipeline-card-top::before { border: 5px solid #6d28d9; }
.stage-monitor .pipeline-card-top::before { border: 5px solid #16a34a; }
.stage-evidence .pipeline-card-top::before { border: 5px solid #0ea5e9; }
.pipeline-card-top { position: relative; }

@media (max-width: 1220px) {
  .pipeline-grid,
  .pipeline-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pipeline-grid::before { display: none; }
  .pipeline-card:nth-child(3)::after,
  .pipeline-card:nth-child(3)::before { display: none; }
}
@media (max-width: 980px) {
  .platform-flow-enterprise { padding: 28px; }
  .pipeline-head { grid-template-columns: 1fr; }
  .pipeline-rail,
  .pipeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pipeline-rail::before { display: none; }
  .pipeline-card::after,
  .pipeline-card::before { display: none; }
}
@media (max-width: 640px) {
  .platform-flow-enterprise { padding: 22px; }
  .pipeline-rail,
  .pipeline-grid { grid-template-columns: 1fr; }
  .pipeline-copy { min-height: 0; }
  .pipeline-card { min-height: auto; }
  .pipeline-rail span { justify-self: start; }
}

.pipeline-head {
  align-items: center;
}
.pipeline-rail,
.pipeline-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.pipeline-rail {
  gap: 16px;
  margin: 14px 0 28px;
}
.pipeline-rail::before {
  left: 0;
  right: 0;
}
.pipeline-rail span {
  min-width: auto;
  width: 100%;
  justify-self: stretch;
  text-align: center;
}
.pipeline-grid::before {
  left: 0;
  right: 0;
  top: 94px;
}
.pipeline-card {
  min-height: 500px;
}
.pipeline-card::after,
.pipeline-card::before {
  display: none;
}
.pipeline-card-top {
  margin-bottom: 16px;
}
.stage-discover .pipeline-card-top::before,
.stage-classify .pipeline-card-top::before,
.stage-enforce .pipeline-card-top::before,
.stage-monitor .pipeline-card-top::before,
.stage-evidence .pipeline-card-top::before {
  top: -8px;
  left: 16px;
}
.pipeline-copy {
  min-height: 118px;
}
.pipeline-bullets {
  margin: 14px 0 16px;
}
.stage-enforce {
  transform: translateY(-4px);
  border-color: rgba(109,40,217,0.22);
  box-shadow: 0 28px 72px rgba(109,40,217,0.14);
}
.stage-enforce .pipeline-visual {
  background: linear-gradient(180deg, rgba(245,243,255,0.96), rgba(238,242,255,0.98));
  border-color: rgba(109,40,217,0.12);
}
.visual-enforce {
  display: grid;
  gap: 14px;
  align-content: start;
}
.guard-flow {
  display: grid;
  grid-template-columns: 1fr 22px 1.1fr 22px 1fr;
  align-items: center;
  gap: 8px;
}
.guard-flow-node {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.08);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.guard-flow-node.strong {
  background: linear-gradient(135deg, rgba(109,40,217,0.16), rgba(37,99,235,0.12));
  color: var(--brand-ink);
  border-color: rgba(109,40,217,0.16);
}
.guard-flow-arrow {
  position: relative;
  height: 2px;
  background: rgba(99,102,241,0.34);
}
.guard-flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  border-left: 6px solid rgba(99,102,241,0.52);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.guard-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gate-pill.danger {
  background: rgba(239,68,68,0.12);
  color: #dc2626;
}
.guard-caption {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}
@media (max-width: 1220px) {
  .pipeline-rail,
  .pipeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .pipeline-rail,
  .pipeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guard-flow {
    grid-template-columns: 1fr;
  }
  .guard-flow-arrow {
    width: 2px;
    height: 18px;
    justify-self: center;
  }
  .guard-flow-arrow::after {
    right: -4px;
    top: 12px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(99,102,241,0.52);
    border-bottom: 0;
  }
}
@media (max-width: 640px) {
  .pipeline-copy {
    min-height: 0;
  }
  .pipeline-card {
    min-height: auto;
  }
  .pipeline-rail span {
    justify-self: start;
    width: auto;
  }
}

.platform-flow-enterprise {
  padding: 32px;
}
.pipeline-head {
  margin-bottom: 18px;
  align-items: start;
}
.pipeline-head .section-eyebrow { margin-bottom: 10px; }
.pipeline-head h3 {
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.04;
  max-width: 760px;
}
.pipeline-lead {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.5;
}
.pipeline-rail {
  gap: 14px;
  margin: 10px 0 18px;
  align-items: center;
}
.pipeline-rail::before {
  top: 18px;
  left: 12px;
  right: 12px;
  height: 2px;
}
.pipeline-rail span {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  border-radius: 18px;
}
.pipeline-rail span::before {
  top: -14px;
  width: 12px;
  height: 12px;
  border-width: 3px;
  box-shadow: 0 0 0 16px rgba(37,99,235,0.08);
}
.pipeline-grid {
  gap: 16px;
  align-items: start;
}
.pipeline-grid::before {
  top: 72px;
  left: 24px;
  right: 24px;
  height: 2px;
  opacity: .7;
}
.pipeline-card {
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  min-height: 0;
  padding: 18px 18px 16px;
  border-radius: 20px;
}
.pipeline-card-top {
  grid-template-columns: 44px 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.pipeline-step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 18px;
}

.stage-discover .pipeline-card-top::before,
.stage-classify .pipeline-card-top::before,
.stage-enforce .pipeline-card-top::before,
.stage-monitor .pipeline-card-top::before,
.stage-evidence .pipeline-card-top::before {
  display: none;
}
.pipeline-step-label {
  margin: 1px 0 2px;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.pipeline-card h4 {
  font-size: 17px;
  line-height: 1.03;
  letter-spacing: -0.04em;
  max-width: none;
}
.pipeline-copy {
  min-height: 0;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.46;
}
.pipeline-bullets {
  gap: 8px;
  margin: 0 0 12px;
}
.pipeline-bullets li {
  font-size: 11px;
  line-height: 1.35;
}
.pipeline-bullets li::before {
  top: 6px;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 5px rgba(37,99,235,0.10);
}
.pipeline-visual {
  min-height: 120px;
  padding: 12px;
  border-radius: 16px;
  margin-top: 0;
}
.visual-node, .visual-core {
  padding: 8px 10px;
  font-size: 10px;
}
.visual-core { min-width: 106px; }
.risk-row {
  grid-template-columns: 46px 1fr;
  gap: 8px;
  font-size: 11px;
}
.risk-bar { height: 13px; }
.visual-chip-row { gap: 8px; }
.visual-chip {
  padding: 8px 10px;
  font-size: 10px;
}
.guard-flow {
  grid-template-columns: minmax(0,0.9fr) 14px minmax(0,1.1fr) 14px minmax(0,0.9fr);
  gap: 6px;
}
.guard-flow-node {
  min-height: 38px;
  padding: 0 8px;
  border-radius: 11px;
  font-size: 10px;
}
.guard-flow-arrow::after {
  top: -3px;
}
.guard-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.gate-pill {
  min-height: 34px;
  padding: 0 8px;
  border-radius: 11px;
  font-size: 10px;
}
.guard-caption {
  font-size: 10px;
  line-height: 1.4;
}
.monitor-chart {
  min-height: 58px;
  gap: 8px;
  padding: 8px 6px 0;
}
.chart-col { border-radius: 10px 10px 3px 3px; }
.monitor-track { gap: 8px; }
.monitor-track span { height: 10px; }
.evidence-sheet {
  width: 88px;
  height: 106px;
  gap: 10px;
}
.evidence-sheet span {
  width: 56px;
  height: 9px;
}
.evidence-sheet span:last-child { width: 46px; }
.evidence-badge {
  min-width: 58px;
  height: 58px;
  right: 12px;
  bottom: 12px;
  font-size: 13px;
}
.stage-enforce {
  border-color: rgba(109,40,217,0.18);
  box-shadow: 0 20px 48px rgba(109,40,217,0.10);
}
@media (max-width: 1220px) {
  .pipeline-grid::before,
  .pipeline-rail::before { display: none; }
  .pipeline-card { min-height: 0; }
}
@media (max-width: 980px) {
  .platform-flow-enterprise { padding: 24px; }
  .pipeline-head { gap: 16px; }
  .pipeline-rail,
  .pipeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guard-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .guard-flow-arrow {
    width: 2px;
    height: 14px;
    justify-self: center;
  }
  .guard-flow-arrow::after {
    right: -4px;
    top: 10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(99,102,241,0.52);
    border-bottom: 0;
  }
  .guard-outcomes { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .platform-flow-enterprise { padding: 20px; }
  .pipeline-head h3 { font-size: 28px; }
  .pipeline-rail { display: none; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .guard-outcomes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

:root {
  --bg: #eef2ff;
  --surface: rgba(255,255,255,0.78);
  --surface-soft: rgba(247,250,255,0.78);
  --surface-alt: rgba(234,241,255,0.88);
  --text: #0b1736;
  --text-soft: #42526e;
  --text-muted: #5b6b87;
  --line: rgba(31, 45, 85, 0.10);
  --line-strong: rgba(31, 45, 85, 0.18);
  --brand: #4f46e5;
  --brand-deep: #2563eb;
  --brand-ink: #0f1f5c;
  --cyan: #22d3ee;
  --green: #10b981;
  --amber: #f59e0b;
  --violet: #7c3aed;
  --shadow-soft: 0 18px 40px rgba(31, 45, 85, 0.08);
  --shadow-strong: 0 22px 56px rgba(79, 70, 229, 0.20);
  --shadow-lux: 0 34px 90px rgba(23, 37, 84, 0.12);
}
body {
  background:
    radial-gradient(circle at 0% 0%, rgba(34,211,238,0.16), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(99,102,241,0.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(59,130,246,0.10), transparent 30%),
    linear-gradient(180deg, #f7f9ff 0%, #eef2ff 42%, #e9efff 100%);
}
.site-header { background: rgba(241,245,255,0.72); backdrop-filter: blur(20px); }
.nav-shell {
  gap: 40px;
  min-height: 78px;
  padding: 0 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(245,248,255,0.82));
  box-shadow: 0 10px 34px rgba(21,35,78,0.08);
}
.brand { gap: 18px; margin-right: 10px; }
.brand-logo { width: 232px; }
.nav-links { gap: 28px; flex: 1; justify-content: center; }
.nav-links a, .nav-industries-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  text-decoration: none;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.nav-links a::after, .nav-industries-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
  opacity: .95;
}
.nav-industries-link::after { content: "▾"; margin-left: 8px; font-size: 11px; color: var(--text-muted); position: static; transform:none; background:none; height:auto; }
.nav-links a:hover, .nav-links a:focus-visible, .nav-industries:hover > .nav-industries-link, .nav-industries.is-open > .nav-industries-link { color: var(--text); }
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-industries:hover > .nav-industries-link::before, .nav-industries.is-open > .nav-industries-link::before { transform: scaleX(1); }
.nav-actions { gap: 14px; }
.btn { min-height: 50px; border-radius: 999px; }
.btn-primary {
  background: linear-gradient(135deg, #5b5cf0 0%, #2e7df6 45%, #1ec5ff 100%);
  box-shadow: 0 18px 46px rgba(79,70,229,.24);
}
.btn-secondary {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,255,.88));
  border-color: rgba(31,45,85,.14);
}
.hero-copy h1 { letter-spacing: -0.075em; }
.hero-text, .section-lead, .problem-card p, .module-card p, .solution-card p, .reg-card p, .guard-card p, .contact-card p, .industry-link-card small { color: var(--text-soft); }
.visual-card, .problem-card, .module-card, .solution-card, .reg-card, .guard-card, .contact-card, .side-card, .compare-panel, .industry-panel, .company-panel, .cta-panel, .platform-flow, .architecture-stack, .trust-grid article {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,250,255,0.84));
  border: 1px solid rgba(31,45,85,.08);
  box-shadow: 0 18px 44px rgba(23,37,84,.08);
}
.story-card:hover,.module-card:hover,.solution-card:hover,.reg-card:hover,.guard-card:hover,.problem-card:hover,.trust-grid article:hover,.industry-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(23,37,84,.12);
}
.industries-menu {
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-40%) translateY(8px);
  min-width: 720px;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,255,0.98));
  box-shadow: 0 28px 80px rgba(23,37,84,0.16);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-industries::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: calc(100% - 4px);
  height: 18px;
}
.nav-industries:hover .industries-menu,
.nav-industries:focus-within .industries-menu,
.nav-industries.is-open .industries-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-40%) translateY(0);
}
.industries-menu a { font-size: 15px; font-weight: 700; }
.industries-menu a:hover { background: linear-gradient(135deg, rgba(79,70,229,0.10), rgba(34,211,238,0.08)); }
.pipeline-rail span, .proof-strip span, .module-index, .industry-subnav-link {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,248,255,.88));
}
@media (max-width: 1180px) {
  .nav-shell { gap: 28px; }
  .brand-logo { width: 210px; }
  .nav-links { gap: 20px; }
  .industries-menu { min-width: 620px; transform: translateX(-30%) translateY(8px); }
  .nav-industries:hover .industries-menu,.nav-industries:focus-within .industries-menu,.nav-industries.is-open .industries-menu { transform: translateX(-30%) translateY(0); }
}
@media (max-width: 980px) {
  .nav-shell { justify-content: space-between; }
  .brand-logo { width: 176px; }
}

.nav-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-actions .btn {
  white-space: nowrap;
}
.nav-actions .btn-primary {
  min-width: 180px;
  padding-inline: 22px;
}
.nav-actions .btn-secondary {
  min-width: 118px;
}

.pipeline-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.pipeline-card {
  height: 100%;
  min-height: 0;
}
.pipeline-card .pipeline-visual {
  margin-top: auto;
}

.visual-discover,
.visual-classify,
.visual-monitor,
.visual-evidence,
.visual-enforce {
  min-height: 132px;
}
.visual-monitor,
.visual-evidence {
  align-content: center;
}
.stage-discover .pipeline-visual,
.stage-classify .pipeline-visual,
.stage-monitor .pipeline-visual,
.stage-evidence .pipeline-visual {
  display: grid;
  align-content: center;
}

@media (max-width: 1180px) {
  .nav-actions .btn-primary {
    min-width: 164px;
  }
}

@media (max-width: 980px) {
  .nav-actions {
    display: grid;
    grid-auto-flow: row;
    justify-content: start;
    width: 100%;
  }
  .nav-actions .btn-primary,
  .nav-actions .btn-secondary {
    min-width: 0;
    width: auto;
  }
  .pipeline-grid {
    grid-auto-rows: auto;
  }
}

.nav-shell{
  gap: 24px;
  overflow: visible;
}
.brand-logo{
  width: 220px;
}
.nav-links{
  flex: 1 1 auto;
  min-width: 0;
  gap: 22px;
}
.nav-links a,
.nav-industries-link{
  font-size: 14px;
  white-space: nowrap;
}
.nav-actions{
  display: flex;
  flex: 0 0 auto;
  margin-left: auto;
  gap: 12px;
  align-items: center;
}
.nav-actions .btn{
  flex: 0 0 auto;
  white-space: nowrap;
}
.nav-actions .btn-primary{
  min-width: 168px;
  width: auto;
  padding-inline: 24px;
}
.nav-actions .btn-secondary{
  min-width: 132px;
  width: auto;
}

@media (max-width: 1280px){
  .brand-logo{
    width: 206px;
  }
  .nav-links{
    gap: 18px;
  }
  .nav-links a,
  .nav-industries-link{
    font-size: 13px;
  }
  .nav-actions .btn-primary{
    min-width: 156px;
    padding-inline: 20px;
  }
  .nav-actions .btn-secondary{
    min-width: 118px;
  }
}

@media (max-width: 1180px){
  .nav-shell{
    gap: 18px;
    padding: 0 22px;
  }
  .brand-logo{
    width: 194px;
  }
  .nav-links{
    gap: 16px;
  }
  .nav-links a,
  .nav-industries-link{
    font-size: 13px;
  }
  .nav-actions .btn{
    min-height: 46px;
    font-size: 13px;
  }
  .nav-actions .btn-primary{
    min-width: 148px;
    padding-inline: 18px;
  }
}

.pipeline-rail {
  isolation: isolate;
}
.pipeline-rail::before {
  z-index: 0;
}
.pipeline-rail span {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(247,249,255,1));
  box-shadow: 0 0 0 10px rgba(247,249,255,1);
}

.industries-menu-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1fr);
  align-items: start;
  gap: 18px 34px;
}

.industries-menu-grid > div {
  display: grid;
  align-content: start;
  align-items: start;
  gap: 8px;
}

.industries-menu-kicker {
  margin-bottom: 10px;
}

.industries-menu a {
  display: block;
  width: 100%;
  margin: 0;
}

@media (max-width: 1180px) {
  .industries-menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }
}

.industries-menu{
  min-width: 0;
  width: min(560px, calc(100vw - 48px));
  padding: 16px 18px;
  border-radius: 24px;
}

.industries-menu-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}

.industries-menu-grid > div{
  gap: 4px;
}

.industries-menu-kicker{
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.industries-menu a{
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1.3;
  border-radius: 12px;
}

@media (max-width: 1180px){
  .industries-menu{
    width: min(520px, calc(100vw - 40px));
    padding: 14px 16px;
  }
}

@media (max-width: 760px){
  .industries-menu{
    width: min(460px, calc(100vw - 28px));
  }
}

section[id],
div[id]{
  scroll-margin-top: 118px;
}

.industries-menu{
  width: min(520px, calc(100vw - 48px));
  min-width: 0;
  padding: 14px 16px;
  border-radius: 22px;
}

.industries-menu-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  align-items: start;
}

.industries-menu-grid > div{
  display: grid;
  align-content: start;
  gap: 2px;
}

.industries-menu-kicker{
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.industries-menu a{
  margin: 0;
  padding: 7px 9px;
  font-size: 13px;
  line-height: 1.25;
  border-radius: 10px;
}

@media (max-width: 1180px){
  .industries-menu{
    width: min(500px, calc(100vw - 40px));
  }
}

:root {
  --shadow-soft: 0 16px 34px rgba(23, 37, 84, 0.06);
  --shadow-strong: 0 18px 42px rgba(79, 70, 229, 0.16);
  --shadow-lux: 0 24px 58px rgba(23, 37, 84, 0.10);
}

body {
  background:
    radial-gradient(circle at 0% 0%, rgba(34,211,238,0.10), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(99,102,241,0.12), transparent 24%),
    linear-gradient(180deg, #f7f9ff 0%, #eff3ff 46%, #edf2ff 100%);
}

.section-soft,
.site-footer {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(241,246,255,0.94));
}

.hero {
  padding: 58px 0 34px;
}

.hero-copy h1,
.section-title,
.pipeline-head h3 {
  text-wrap: balance;
}

.hero-text {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.58;
}

.section-lead {
  font-size: 17px;
  line-height: 1.62;
  max-width: 780px;
}

.story-copy p:last-child,
.problem-card p,
.module-card p,
.solution-card p,
.reg-card p,
.guard-card p,
.contact-card p,
.company-copy p,
.pipeline-copy {
  line-height: 1.58;
}

.visual-card,
.problem-card,
.module-card,
.solution-card,
.reg-card,
.guard-card,
.contact-card,
.side-card,
.compare-panel,
.industry-panel,
.company-panel,
.cta-panel,
.platform-flow,
.architecture-stack,
.trust-grid article,
.story-card,
.industries-showcase,
.industry-bucket {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,250,255,0.92));
  border-color: rgba(31,45,85,0.07);
  box-shadow: var(--shadow-soft);
}

.story-card:hover,
.module-card:hover,
.solution-card:hover,
.reg-card:hover,
.guard-card:hover,
.problem-card:hover,
.trust-grid article:hover,
.industry-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(23,37,84,0.09);
}

.btn,
.story-card,
.module-card,
.solution-card,
.reg-card,
.guard-card,
.problem-card,
.trust-grid article,
.industry-link-card {
  transition-duration: .16s;
}

.module-card,
.solution-card,
.reg-card,
.guard-card,
.problem-card,
.contact-card,
.side-card {
  padding: 22px;
}

.module-card h3,
.solution-card h3,
.reg-card h3,
.guard-card h3,
.problem-card h3,
.contact-card h3,
.side-card h3 {
  font-size: 22px;
  line-height: 1.1;
}

.story-copy h3 {
  font-size: 28px;
}

.proof-strip {
  gap: 10px;
}

.proof-strip span,
.module-index,
.pipeline-rail span {
  color: var(--text);
  border-color: rgba(31,45,85,0.09);
}

.trust-grid article {
  min-height: 158px;
  padding: 24px;
}

.trust-grid h3 {
  font-size: 20px;
}

.platform-flow-enterprise {
  padding: 30px;
}

.pipeline-card {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,251,255,0.96));
  box-shadow: 0 16px 32px rgba(23,37,84,0.06);
}

.stage-enforce {
  transform: none;
  border-color: rgba(109,40,217,0.14);
  box-shadow: 0 18px 40px rgba(109,40,217,0.08);
}

.stage-enforce .pipeline-visual {
  background: linear-gradient(180deg, rgba(247,245,255,0.96), rgba(242,245,255,0.98));
}

.compare-panel {
  padding: 10px 22px;
}

.compare-row {
  padding: 13px 0;
}

.compare-row.emphasis {
  background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(34,211,238,0.06));
}

.company-panel,
.cta-panel {
  padding: 30px;
}

.footer-copy {
  max-width: 520px;
  justify-self: end;
}

@media (max-width: 980px) {
  .hero-text,
  .section-lead {
    font-size: 16px;
  }

  .platform-flow-enterprise,
  .company-panel,
  .cta-panel {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 30px;
  }

  .hero-text,
  .section-lead {
    font-size: 15px;
    line-height: 1.56;
  }

  .module-card,
  .solution-card,
  .reg-card,
  .guard-card,
  .problem-card,
  .contact-card,
  .side-card,
  .story-card,
  .trust-grid article,
  .industries-showcase,
  .industry-bucket,
  .platform-flow-enterprise,
  .company-panel,
  .cta-panel {
    padding: 20px;
  }
}

.evidence-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.evidence-intro {
  margin-bottom: 32px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.evidence-card,
.flow-panel,
.pack-panel,
.regulator-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,255,0.93));
  border: 1px solid rgba(31,45,85,0.07);
  box-shadow: var(--shadow-soft);
  border-radius: 22px;
}

.evidence-card {
  padding: 22px;
}

.evidence-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(34,211,238,0.12));
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.evidence-card h3,
.flow-panel h3,
.pack-copy h3,
.regulator-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.evidence-card p,
.flow-panel-head p,
.flow-step p,
.pack-copy p,
.regulator-card p,
.pack-item label,
.pack-row {
  color: var(--text-soft);
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}

.flow-panel,
.pack-panel {
  padding: 24px;
}

.flow-panel-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.flow-panel-head p:last-child {
  margin: 10px 0 0;
}

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

.flow-step {
  min-height: 210px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,255,0.92));
  border: 1px solid rgba(31,45,85,0.07);
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(79,70,229,0.10);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.flow-step h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.flow-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.flow-step-highlight {
  background: linear-gradient(180deg, rgba(245,243,255,0.98), rgba(240,245,255,0.95));
  border-color: rgba(79,70,229,0.16);
  box-shadow: 0 16px 34px rgba(79,70,229,0.10);
}

.pack-copy {
  margin-bottom: 18px;
}

.pack-copy p:last-child {
  margin: 10px 0 0;
}

.pack-ui {
  border-radius: 18px;
  border: 1px solid rgba(31,45,85,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,255,0.94));
  overflow: hidden;
}

.pack-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(31,45,85,0.08);
}

.pack-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16,185,129,0.12);
  color: #0f8a62;
  font-size: 12px;
  font-weight: 800;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.pack-item {
  padding: 14px 14px 13px;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(31,45,85,0.06);
}

.pack-item label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pack-item strong {
  font-size: 14px;
  color: var(--text);
}

.pack-table {
  border-top: 1px solid rgba(31,45,85,0.08);
}

.pack-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 13px 18px;
  font-size: 13px;
  border-bottom: 1px solid rgba(31,45,85,0.06);
}

.pack-row:last-child {
  border-bottom: 0;
}

.pack-head {
  background: rgba(79,70,229,0.05);
  color: var(--text);
  font-weight: 800;
}

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

.regulator-card {
  padding: 22px;
}

@media (max-width: 1220px) {
  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-layout,
  .regulator-blocks {
    grid-template-columns: 1fr;
  }

  .flow-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .flow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .evidence-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .evidence-grid,
  .flow-track,
  .pack-grid,
  .regulator-blocks {
    grid-template-columns: 1fr;
  }

  .flow-panel,
  .pack-panel,
  .evidence-card,
  .regulator-card {
    padding: 20px;
  }

  .flow-step {
    min-height: 0;
  }

  .pack-row {
    grid-template-columns: 1fr;
  }
}

:root {
  --brand-green: #24A67E;
  --brand-green-deep: #1F8A6A;
  --brand-green-soft: rgba(36, 166, 126, 0.10);
  --brand-green-line: rgba(36, 166, 126, 0.22);
}

.section-eyebrow,
.eyebrow,
.mini-eyebrow,
.trust-kicker,
.story-index,
.industries-menu-kicker,
.industry-bucket-kicker,
.pipeline-step-label,
.pack-item label,
.signal-label {
  color: var(--brand-green);
}

.problem-card h3,
.module-card h3,
.solution-card h3,
.reg-card h3,
.guard-card h3,
.contact-card h3,
.side-card h3,
.evidence-card h3,
.regulator-card h3,
.story-copy h3,
.industry-bucket h3,
.industry-link-card span,
.visual-card-side h2,
.flow-step h4,
.pack-copy h3,
.flow-panel h3 {
  color: var(--brand-green);
}

.topbar-label,
.board-row strong,
.compare-row strong,
.pack-item strong,
.pack-head,
.evidence-number,
.pack-badge {
  color: var(--brand-green-deep);
}

.evidence-number {
  background: rgba(36, 166, 126, 0.12);
}

.pack-badge {
  background: rgba(36, 166, 126, 0.12);
}

.signal-card {
  border-color: rgba(15, 23, 42, 0.07);
}

.signal-card .signal-label {
  color: var(--brand-green);
}

.tone-blue .signal-value,
.tone-green .signal-value,
.tone-violet .signal-value {
  color: var(--brand-green);
}

.proof-strip span,
.module-index,
.pipeline-rail span {
  border-color: rgba(36, 166, 126, 0.16);
}

.check-list li::before,
.pipeline-bullets li::before {
  background: var(--brand-green);
  color: var(--brand-green);
  box-shadow: 0 0 0 5px rgba(36, 166, 126, 0.10);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-industries:hover > .nav-industries-link,
.nav-industries.is-open > .nav-industries-link,
.nav-links a.active,
.nav-industries-link.active {
  color: var(--brand-green-deep);
}

.nav-links a::after,
.nav-industries-link::before {
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-deep));
}

.nav-links a.active::after,
.nav-industries-link.active::before,
.nav-links a[aria-current="page"]::after,
.nav-industries-link[aria-current="page"]::before {
  transform: scaleX(1);
}

.industries-menu a:hover,
.industry-link-card:hover {
  border-color: var(--brand-green-line);
  color: var(--brand-green-deep);
}

.compare-row.emphasis,
.stack-layer.highlight,
.flow-step-highlight {
  border-color: var(--brand-green-line);
  background: linear-gradient(135deg, rgba(36, 166, 126, 0.10), rgba(36, 166, 126, 0.04));
}

.flow-step span,
.pipeline-step-number {
  color: var(--brand-green-deep);
}

.flow-step span,
.pipeline-step-number,
.visual-chip.chip-blue {
  background: rgba(36, 166, 126, 0.10);
}

.visual-chip.chip-blue {
  color: var(--brand-green-deep);
}

.guard-flow-node.strong,
.stage-enforce .pipeline-visual {
  border-color: rgba(36, 166, 126, 0.14);
  background: linear-gradient(135deg, rgba(36, 166, 126, 0.12), rgba(36, 166, 126, 0.05));
}

.gate-pill.strong,
.gate-pill.success {
  background: rgba(36, 166, 126, 0.12);
  color: var(--brand-green-deep);
}

.contact-card a,
.industries-menu a:hover,
.industry-link-card:hover small {
  color: var(--brand-green-deep);
}


/* Hero background image - GoDaddy path fix */
.hero {
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(247, 249, 255, 0.96) 0%,
      rgba(247, 249, 255, 0.90) 28%,
      rgba(247, 249, 255, 0.82) 44%,
      rgba(247, 249, 255, 0.62) 58%,
      rgba(247, 249, 255, 0.28) 72%,
      rgba(247, 249, 255, 0.08) 84%,
      rgba(247, 249, 255, 0.00) 100%
    ),
    url('../img/hero-bg.jpg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 36%, rgba(255,255,255,0.14), transparent 22%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.00));
  pointer-events: none;
}

.hero > .container,
.hero-grid,
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(247, 249, 255, 0.94) 0%,
        rgba(247, 249, 255, 0.88) 28%,
        rgba(247, 249, 255, 0.82) 52%,
        rgba(247, 249, 255, 0.74) 100%
      ),
      url('../img/hero-bg.jpg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}


/* =========================================================
   Enterprise brand refinement: replace residual blue/purple
   gradients with Nexentum navy + professional green
   ========================================================= */

:root {
  --nexentum-navy: #123B7A;
  --nexentum-navy-deep: #0B2E63;
  --nexentum-green: #24A67E;
  --nexentum-green-deep: #1F8A6A;
  --nexentum-cta-shadow: 0 18px 42px rgba(18, 59, 122, 0.18);
}

/* Primary CTA buttons */
.btn-primary,
.nav-actions .btn-primary,
.hero-actions .btn-primary,
.cta-actions .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--nexentum-green) 0%, var(--nexentum-navy) 100%);
  box-shadow: var(--nexentum-cta-shadow);
}

.btn-primary:hover,
.nav-actions .btn-primary:hover,
.hero-actions .btn-primary:hover,
.cta-actions .btn-primary:hover {
  background: linear-gradient(135deg, var(--nexentum-green-deep) 0%, var(--nexentum-navy-deep) 100%);
}

/* Featured module card */
.module-card.featured {
  background: linear-gradient(135deg, var(--nexentum-navy) 0%, var(--nexentum-navy-deep) 58%, var(--nexentum-green-deep) 100%);
  color: #ffffff;
  box-shadow: 0 24px 54px rgba(18, 59, 122, 0.16);
}

.module-card.featured h3 {
  color: #ffffff;
}

.module-card.featured p {
  color: rgba(255, 255, 255, 0.88);
}

.module-card.featured .module-index {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

/* Keep section/card green accents, but avoid green-on-blue conflict */
.module-card.featured .section-eyebrow,
.module-card.featured .eyebrow,
.module-card.featured .mini-eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

/* CTA panel primary action */
.cta-panel .btn-primary {
  background: linear-gradient(135deg, var(--nexentum-green) 0%, var(--nexentum-navy) 100%);
  box-shadow: var(--nexentum-cta-shadow);
}

/* Secondary emphasis chips and strong pills align to brand */
.gate-pill.strong,
.gate-pill.success,
.pack-badge {
  background: rgba(36, 166, 126, 0.12);
  color: var(--nexentum-green-deep);
}

/* Slightly calmer hover glow for premium enterprise feel */
.btn-primary,
.module-card.featured {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

/* =========================================================
   ENTERPRISE VISUAL SYSTEM REFINEMENT
   Scope: non-hero sections only
   Goal: increase depth, consistency, and premium feel
   without breaking existing hero / landing treatment
   ========================================================= */

:root {
  --enterprise-surface-top: rgba(255, 255, 255, 0.97);
  --enterprise-surface-bottom: rgba(246, 250, 255, 0.93);
  --enterprise-border: rgba(18, 59, 122, 0.08);
  --enterprise-border-strong: rgba(18, 59, 122, 0.14);
  --enterprise-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.06);
  --enterprise-shadow-card: 0 22px 54px rgba(15, 23, 42, 0.08);
  --enterprise-shadow-hover: 0 28px 70px rgba(15, 23, 42, 0.10);
  --enterprise-glow-navy: rgba(18, 59, 122, 0.10);
  --enterprise-glow-green: rgba(36, 166, 126, 0.09);
}

main > section:not(.hero) {
  position: relative;
}

main > section:not(.hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 18%, var(--enterprise-glow-green), transparent 24%),
    radial-gradient(circle at 12% 78%, var(--enterprise-glow-navy), transparent 24%);
  opacity: 0.55;
}

.section.section-soft:not(.hero),
#modules.section,
#architecture.section,
#company.section,
.cta-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(241,246,255,0.96));
}

#platform {
  background:
    linear-gradient(180deg, rgba(248,250,255,0.98), rgba(242,247,255,0.96));
}

#platform::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.00) 55%, rgba(18,59,122,0.035) 100%),
    radial-gradient(circle at 82% 32%, rgba(36,166,126,0.10), transparent 18%);
}

#modules {
  background:
    linear-gradient(180deg, rgba(246,249,255,0.98), rgba(241,246,255,0.96));
}

#solutions {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,250,255,0.94));
}

#regulatory {
  background:
    linear-gradient(180deg, rgba(248,250,255,0.96), rgba(242,247,255,0.95));
}

#contact {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,255,0.94));
}

.story-card,
.problem-card,
.module-card,
.solution-card,
.reg-card,
.guard-card,
.contact-card,
.side-card,
.compare-panel,
.industry-panel,
.company-panel,
.cta-panel,
.platform-flow,
.architecture-stack,
.trust-grid article,
.industries-showcase,
.industry-bucket,
.visual-card-side,
.visual-card-main,
.signal-card,
.pipeline-card,
.flow-panel,
.pack-panel,
.regulator-card,
.evidence-card {
  background:
    linear-gradient(180deg, var(--enterprise-surface-top), var(--enterprise-surface-bottom));
  border: 1px solid var(--enterprise-border);
  box-shadow: var(--enterprise-shadow-card);
}

.story-card,
.problem-card,
.module-card,
.solution-card,
.reg-card,
.guard-card,
.contact-card,
.side-card,
.compare-panel,
.industry-bucket,
.signal-card,
.pipeline-card,
.evidence-card,
.regulator-card {
  position: relative;
  overflow: hidden;
}

.story-card::after,
.problem-card::after,
.module-card::after,
.solution-card::after,
.reg-card::after,
.guard-card::after,
.contact-card::after,
.side-card::after,
.compare-panel::after,
.industry-bucket::after,
.signal-card::after,
.pipeline-card::after,
.evidence-card::after,
.regulator-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.00) 42%);
  pointer-events: none;
}

.story-card:hover,
.module-card:hover,
.solution-card:hover,
.reg-card:hover,
.guard-card:hover,
.problem-card:hover,
.trust-grid article:hover,
.industry-link-card:hover,
.contact-card:hover,
.side-card:hover,
.signal-card:hover,
.evidence-card:hover,
.regulator-card:hover {
  transform: translateY(-3px);
  border-color: var(--enterprise-border-strong);
  box-shadow: var(--enterprise-shadow-hover);
}

.problem-card h3,
.module-card h3,
.solution-card h3,
.reg-card h3,
.guard-card h3,
.contact-card h3,
.side-card h3,
.evidence-card h3,
.regulator-card h3,
.story-copy h3,
.industry-bucket h3,
.visual-card-side h2,
.flow-panel h3,
.pack-copy h3,
.platform-flow h3,
.company-panel h2 {
  letter-spacing: -0.04em;
}

.problem-card p,
.module-card p,
.solution-card p,
.reg-card p,
.guard-card p,
.contact-card p,
.side-card p,
.company-copy p,
.section-lead,
.pipeline-copy,
.story-copy p:last-child {
  color: #41516b;
}

.trust-grid article {
  min-height: 164px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.proof-strip span,
.module-index,
.pipeline-rail span,
.pack-badge,
.evidence-number {
  border-color: rgba(18, 59, 122, 0.10);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.problem-card {
  min-height: 280px;
  backdrop-filter: blur(6px);
}

.module-card {
  min-height: 228px;
}

.module-card:not(.featured) {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.94));
}

.module-card.featured {
  background:
    linear-gradient(135deg, rgba(18,59,122,0.98) 0%, rgba(11,46,99,0.98) 58%, rgba(31,138,106,0.96) 100%);
  border-color: rgba(18, 59, 122, 0.20);
  box-shadow: 0 28px 64px rgba(18, 59, 122, 0.18);
}

.solution-card,
.reg-card,
.guard-card,
.contact-card,
.side-card {
  min-height: 220px;
}

#screens .story-card {
  border-radius: 28px;
  padding: 30px;
}

#screens .story-media img {
  border-radius: 24px;
  border: 1px solid rgba(18,59,122,0.08);
  box-shadow: 0 22px 56px rgba(15,23,42,0.10);
}

.industries-showcase {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(243,248,255,0.95));
  border: 1px solid var(--enterprise-border);
  box-shadow: 0 22px 58px rgba(15,23,42,0.08);
}

.industry-link-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.94));
  border: 1px solid rgba(18,59,122,0.08);
  box-shadow: 0 12px 28px rgba(15,23,42,0.04);
}

.architecture-stack {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,255,0.95));
}

.stack-layer,
.stack-row span {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.94));
  border-color: rgba(18,59,122,0.10);
}

.stack-layer.highlight {
  background:
    linear-gradient(135deg, rgba(36,166,126,0.10), rgba(18,59,122,0.07));
  border-color: rgba(36,166,126,0.16);
}

.compare-panel,
.company-panel,
.cta-panel {
  backdrop-filter: blur(6px);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(242,247,255,0.96));
  border-top: 1px solid rgba(18,59,122,0.08);
}

@media (max-width: 980px) {
  main > section:not(.hero)::before,
  #platform::after {
    opacity: 0.35;
  }

  .problem-card,
  .solution-card,
  .reg-card,
  .guard-card,
  .contact-card,
  .side-card {
    min-height: 0;
  }

  #screens .story-card {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .story-card,
  .problem-card,
  .module-card,
  .solution-card,
  .reg-card,
  .guard-card,
  .contact-card,
  .side-card,
  .compare-panel,
  .industry-bucket,
  .signal-card,
  .pipeline-card,
  .evidence-card,
  .regulator-card,
  .flow-panel,
  .pack-panel,
  .company-panel,
  .cta-panel,
  .platform-flow,
  .architecture-stack {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  }
}



/* =========================================================
   HERO VISIBILITY FIX
   Goal: restore right-side console/card readability without
   disturbing the rest of the website
   ========================================================= */

.hero {
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(247, 249, 255, 0.92) 0%,
      rgba(247, 249, 255, 0.84) 26%,
      rgba(247, 249, 255, 0.70) 42%,
      rgba(247, 249, 255, 0.42) 58%,
      rgba(247, 249, 255, 0.18) 72%,
      rgba(247, 249, 255, 0.06) 84%,
      rgba(247, 249, 255, 0.00) 100%
    ),
    url('../img/hero-bg.jpg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 36%, rgba(255,255,255,0.10), transparent 20%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.01), rgba(15, 23, 42, 0.00));
  pointer-events: none;
}

.hero .visual-card-main,
.hero .visual-card-side,
.hero .signal-card,
.hero .board-card,
.hero .compare-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 59, 122, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero .visual-card-main {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.hero .signal-card {
  background: rgba(255, 255, 255, 0.90);
}

.hero .signal-label,
.hero .signal-note,
.hero .board-row span,
.hero .compare-row span,
.hero .topbar-label {
  color: #4b5c78;
}

.hero .browser-dots span {
  background: rgba(18, 59, 122, 0.22);
}

@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(247, 249, 255, 0.94) 0%,
        rgba(247, 249, 255, 0.86) 26%,
        rgba(247, 249, 255, 0.78) 52%,
        rgba(247, 249, 255, 0.70) 100%
      ),
      url('../img/hero-bg.jpg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .hero .visual-card-main,
  .hero .visual-card-side,
  .hero .signal-card {
    background: rgba(255, 255, 255, 0.92);
  }
}


/* =========================================================
   HERO RIGHT-SIDE PANEL ALIGNMENT FIX
   Goal: keep bottom-right rows contained inside the card
   and aligned cleanly on desktop and mobile
   ========================================================= */

.hero .board-card,
.hero .compare-panel {
  margin-top: 16px;
  padding: 8px 22px 10px;
  border-top: 1px solid rgba(18, 59, 122, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.hero .board-row,
.hero .compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.hero .board-row span,
.hero .compare-row span {
  min-width: 0;
  max-width: 100%;
}

.hero .board-row strong,
.hero .compare-row strong {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .hero .board-row,
  .hero .compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero .board-row strong,
  .hero .compare-row strong {
    text-align: left;
    white-space: normal;
  }
}
