:root {
  --orbix-navy: #061525;
  --orbix-navy-2: #0b1f35;
  --orbix-azure: #0078d4;
  --orbix-azure-2: #2b88d8;
  --orbix-odoo: #714b67;
  --orbix-purple: #8661c1;
  --orbix-cyan: #00d4ff;
  --orbix-green: #13a10e;
  --orbix-surface: #ffffff;
  --orbix-surface-2: #f5f8fb;
  --orbix-border: #d9e2ec;
  --orbix-text: #172033;
  --orbix-muted: #5d6b7a;
  --orbix-soft: #eef5fb;
  --shadow-sm: 0 4px 18px rgba(6, 21, 37, 0.08);
  --shadow-md: 0 18px 46px rgba(6, 21, 37, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--orbix-text);
  background:
    radial-gradient(circle at top left, rgba(0, 120, 212, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7f9fc 100%);
  line-height: 1.65;
}

a {
  color: var(--orbix-azure);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(217, 226, 236, 0.86);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orbix-navy);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 20%, var(--orbix-cyan), transparent 28%),
    linear-gradient(135deg, var(--orbix-azure), var(--orbix-odoo));
  box-shadow: 0 12px 26px rgba(0, 120, 212, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.94rem;
}

.nav-links a {
  color: #314156;
  font-weight: 600;
}

.nav-cta {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--orbix-navy);
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.20), transparent 24%),
    radial-gradient(circle at 90% 8%, rgba(113, 75, 103, 0.22), transparent 28%),
    linear-gradient(135deg, var(--orbix-navy) 0%, #0d2b4a 58%, #102235 100%);
  color: #fff;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 22px 78px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #dff7ff;
  font-size: 0.88rem;
  font-weight: 700;
}

h1, h2, h3 {
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  max-width: 900px;
}

.hero p {
  font-size: 1.14rem;
  color: #dbe8f6;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  text-decoration: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orbix-azure), var(--orbix-azure-2));
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 120, 212, 0.30);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.hero-card {
  border-radius: 28px;
  padding: 24px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

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

.kpi {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.kpi strong {
  display: block;
  font-size: 1.45rem;
  color: #fff;
}

.kpi span {
  color: #cfe3f5;
  font-size: 0.9rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 22px;
}

.section-tight {
  padding-top: 44px;
}

.section-title {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 0 0 14px;
  color: var(--orbix-navy);
}

.section-title p {
  color: var(--orbix-muted);
  font-size: 1.06rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--orbix-surface);
  border: 1px solid var(--orbix-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  transition: 180ms ease;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--orbix-navy);
  font-size: 1.32rem;
}

.card p {
  color: var(--orbix-muted);
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--orbix-azure);
  background: rgba(0, 120, 212, 0.10);
}

.band {
  background: linear-gradient(135deg, #f3f8ff, #ffffff);
  border-top: 1px solid var(--orbix-border);
  border-bottom: 1px solid var(--orbix-border);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 11px;
  background: var(--orbix-navy);
  color: #fff;
  font-weight: 900;
}

.list {
  padding-left: 20px;
  color: var(--orbix-muted);
}

.list li {
  margin: 9px 0;
}

.cta-panel {
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(0, 212, 255, 0.20), transparent 30%),
    linear-gradient(135deg, var(--orbix-navy), #112b45);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.cta-panel p {
  color: #dce9f6;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.table th {
  background: #eef5fb;
  color: var(--orbix-navy);
}

.footer {
  background: var(--orbix-navy);
  color: #dce9f6;
  padding: 54px 22px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
}

.footer a {
  color: #bfeeff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}

.small {
  font-size: 0.92rem;
  color: var(--orbix-muted);
}

@media (max-width: 900px) {
  .hero-inner,
  .grid-2,
  .grid-3,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 12px;
  }
}

/* ORBIX_PUBLIC_MENTIONS_CSS */
.mention-source-card {
  border: 1px solid var(--orbix-border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mention-source-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef5fb;
}

.mention-source-card .mention-body {
  padding: 24px;
}

.mention-frame {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--orbix-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mention-callout {
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 120, 212, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff, #f4f8fc);
  border: 1px solid var(--orbix-border);
}

.mention-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.mention-pill {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--orbix-navy);
  background: #eaf4ff;
  border: 1px solid #d6e9fa;
}
