:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fafd;
  --surface-muted: #f7f9fc;
  --surface-cream: #f7fbff;
  --text: #0a1d5a;
  --text-muted: #5a6e95;
  --text-soft: #8393b2;
  --navy: #0a1d5a;
  --navy-strong: #081645;
  --navy-soft: #113f9e;
  --orange: #00a6bb;
  --orange-deep: #113f9e;
  --orange-soft: rgba(66, 212, 224, 0.14);
  --line: rgba(17, 63, 158, 0.14);
  --line-strong: rgba(10, 29, 90, 0.16);
  --success: #00a6bb;
  --warning: #42d4e0;
  --danger: #ef4444;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-card: 0 8px 30px rgba(15, 23, 42, 0.04), 0 4px 10px rgba(15, 23, 42, 0.02);
  --shadow-float: 0 20px 50px rgba(15, 23, 42, 0.1);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(66, 212, 224, 0.18), transparent 24%),
    radial-gradient(circle at top left, rgba(17, 63, 158, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
}

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

.site-main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  margin-inline-start: auto;
}

.brand-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav,
.header-cta,
.hero-actions,
.filter-actions,
.card-actions,
.trust-ribbon,
.stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 4px 0;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  font-weight: 500;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--orange-deep);
  border-color: var(--orange-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: 12px 18px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.btn-primary:hover,
.btn-dark:hover {
  background: var(--orange-deep);
}

.btn-outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.section,
.page-section,
.hero-section,
.cta-section {
  padding: 88px 0;
}

.hero-section-compact {
  padding-top: 56px;
  padding-bottom: 68px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--orange-soft);
  border: 1px solid rgba(253, 118, 26, 0.18);
  color: var(--orange-deep);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-badge-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
}

.body-copy,
.section-heading p,
.hero-copy p,
.card-text,
.rich-content,
.site-footer p,
.faq-item div {
  color: var(--text-muted);
  line-height: 1.9;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-right {
  margin-inline: 0 auto;
  text-align: right;
}

.hero-grid,
.split-grid,
.form-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.span-12 { grid-column: span 12; }
.span-8 { grid-column: span 8; }
.span-7 { grid-column: span 7; }
.span-6 { grid-column: span 6; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }

.surface-card,
.soft-card,
.dark-card,
.glass-card,
.filter-shell,
.faq-item,
.pagination,
.form-card,
.mini-card,
.mosaic-card,
.article-card,
.info-card,
.detail-panel,
.hero-stage {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.surface-card,
.filter-shell,
.faq-item,
.pagination,
.form-card,
.mini-card,
.mosaic-card,
.article-card,
.info-card,
.detail-panel {
  background: var(--surface);
  border: 1px solid var(--line);
}

.soft-card {
  background: linear-gradient(135deg, var(--surface-muted), var(--surface-soft));
  border: 1px solid var(--line-strong);
}

.dark-card {
  background: linear-gradient(145deg, var(--navy), #1d2741);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
}

.glass-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.surface-card,
.soft-card,
.dark-card,
.form-card,
.filter-shell,
.mosaic-card,
.article-card,
.info-card,
.detail-panel,
.mini-card {
  padding: 24px;
}

.dark-card h1,
.dark-card h2,
.dark-card h3,
.dark-card h4,
.dark-card strong,
.dark-card a,
.dark-card .hero-badge-light,
.dark-card .stat-value {
  color: #fff;
}

.dark-card p,
.dark-card .rich-content,
.dark-card .card-text {
  color: rgba(255, 255, 255, 0.72);
}

.dark-card .card-link {
  color: #ffd7bb;
}

.card-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--orange-deep);
  font-weight: 600;
  transition: gap 0.18s ease;
}

.card-link:hover,
.text-link:hover {
  gap: 12px;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--orange-soft);
  color: var(--orange-deep);
}

.icon-box.alt {
  background: var(--surface-soft);
  color: var(--navy);
}

.icon-box.dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-home {
  position: relative;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(21, 28, 39, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.14;
  pointer-events: none;
}

.hero-home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-home-copy {
  grid-column: span 6;
}

.hero-home-copy .hero-title {
  color: var(--navy-strong);
  margin-top: 18px;
}

.hero-home-copy p {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-home-media {
  grid-column: span 6;
}

.hero-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eef6fb 55%, #fff2e8 100%);
  border: 1px solid var(--line-strong);
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(253, 118, 26, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(19, 27, 46, 0.08), rgba(255, 255, 255, 0));
}

.device-stack {
  position: absolute;
  inset: 48px 40px 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: end;
}

.device-frame {
  border-radius: 26px;
  background: linear-gradient(180deg, var(--navy) 0%, #212d4a 100%);
  padding: 14px;
  box-shadow: var(--shadow-float);
}

.device-frame.small {
  transform: translateY(32px);
}

.device-screen {
  min-height: 260px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #fefefe, #edf2ff);
  padding: 16px;
}

.device-screen.small {
  min-height: 180px;
}

.device-topbar,
.device-stats,
.device-list {
  display: grid;
  gap: 10px;
}

.device-chip-row {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.device-chip {
  width: 62px;
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 27, 46, 0.12);
}

.device-chip.accent {
  background: rgba(253, 118, 26, 0.55);
}

.device-panel {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(19, 27, 46, 0.06);
  padding: 12px;
}

.device-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: end;
  height: 92px;
}

.device-bars span {
  display: block;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, rgba(253, 118, 26, 0.88), rgba(19, 27, 46, 0.65));
}

.device-bars span:nth-child(1) { height: 48%; }
.device-bars span:nth-child(2) { height: 78%; }
.device-bars span:nth-child(3) { height: 62%; }
.device-bars span:nth-child(4) { height: 90%; }

.device-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.device-row .label {
  width: 38%;
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 27, 46, 0.14);
}

.device-row .value {
  width: 26%;
  height: 10px;
  border-radius: 999px;
  background: rgba(253, 118, 26, 0.34);
}

.trust-band {
  background: var(--navy);
  padding: 22px 0;
}

.trust-ribbon {
  justify-content: space-between;
  gap: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.trust-pill .bi {
  color: var(--orange);
}

.problem-grid,
.article-grid,
.mosaic-grid,
.sector-list,
.faq-list,
.feature-strip {
  display: grid;
  gap: 24px;
}

.problem-grid,
.article-grid,
.mosaic-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.problem-card,
.article-card,
.mosaic-card,
.feature-pod,
.faq-item,
.mini-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.problem-card:hover,
.article-card:hover,
.mosaic-card:hover,
.feature-pod:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.problem-card {
  padding: 26px;
}

.problem-card h3,
.article-card h3,
.mosaic-card h3,
.feature-pod h3,
.mini-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.solution-band {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.solution-copy {
  grid-column: span 6;
}

.solution-visual {
  grid-column: span 6;
}

.solution-visual-frame {
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(253, 118, 26, 0.14), transparent 28%),
    linear-gradient(145deg, #0f1729, #1e2947);
  position: relative;
  overflow: hidden;
}

.feature-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-pod {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  text-align: right;
}

.feature-pod p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sector-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.sector-showcase-media {
  grid-column: span 6;
}

.sector-showcase-copy {
  grid-column: span 6;
}

.showcase-panel {
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #ffffff, #edf2ff);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}

.sector-list {
  margin-top: 24px;
}

.sector-list-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.workflow-band {
  background: var(--navy);
  color: #fff;
}

.workflow-band .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}

.workflow-step {
  padding: 2rem;
  position: relative;
  text-align: center;
}

.workflow-step-number {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 20px 34px rgba(253, 118, 26, 0.24);
}

.workflow-step p {
  color: rgba(255, 255, 255, 0.68);
  margin: 10px 0 0;
}

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

.page-hero-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(21, 28, 39, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.14;
  pointer-events: none;
}

.page-hero-dark {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.page-hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.22;
}

.page-hero-dark .section-heading {
  position: relative;
  z-index: 1;
}

.page-hero-dark .section-title,
.page-hero-dark .section-heading p {
  color: #fff;
}

.page-hero-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.mosaic-card.soft {
  background: linear-gradient(135deg, var(--surface-muted), var(--surface-soft));
  border-color: var(--line-strong);
}

.mosaic-card.dark {
  background: linear-gradient(145deg, var(--navy), #1c2740);
  border-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.mosaic-card.dark p,
.mosaic-card.dark .card-text {
  color: rgba(255, 255, 255, 0.72);
}

.mosaic-card-media {
  min-height: 170px;
  margin-top: 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, #f4f6ff, #fff3e8);
  border: 1px solid var(--line-strong);
}

.mosaic-card.dark .mosaic-card-media {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.08);
}

.filter-shell {
  padding: 22px;
  margin-bottom: 32px;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 16px;
}

.filter-bar input,
.filter-bar select,
.lead-form input,
.lead-form select,
.lead-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.filter-bar input:focus,
.filter-bar select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.newsletter-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(253, 118, 26, 0.14);
}

.article-card {
  overflow: hidden;
}

.article-media {
  height: 250px;
  margin: -24px -24px 20px;
  background: linear-gradient(135deg, #edf2ff, #fff3e8);
  border-bottom: 1px solid var(--line-strong);
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.meta-date {
  color: var(--text-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.92rem;
}

.form-grid .lead-form,
.lead-form {
  display: grid;
  gap: 18px;
}

.field-label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

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

.option-card {
  position: relative;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.option-card input:checked + span {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange-deep);
}

.sidebar-stack,
.main-stack {
  display: grid;
  gap: 24px;
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  margin-bottom: 14px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 24px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  border-radius: 40px;
  background: var(--orange);
  color: #23180d;
  box-shadow: var(--shadow-float);
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  inset: auto -46px -60px auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

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

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 14px 0 12px;
}

.cta-copy p {
  max-width: 620px;
  color: rgba(35, 24, 13, 0.8);
}

.site-footer {
  margin-top: 88px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 24px;
  padding: 80px 0 40px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.14);
}

.footer-links a:hover {
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.newsletter-form button {
  flex: 0 0 48px;
  width: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
}

.footer-bottom {
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.flash-shell {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.flash-message,
.form-errors {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
}

.flash-message.success {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.18);
  color: #0f7a58;
}

.flash-message.error,
.form-errors {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.18);
  color: #a12626;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.pagination .active {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  color: #fff;
}

.narrow {
  width: min(840px, 100%);
}

@media (max-width: 1024px) {
  .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-float);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .site-nav,
  .header-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .hero-home-copy,
  .hero-home-media,
  .solution-copy,
  .solution-visual,
  .sector-showcase-media,
  .sector-showcase-copy,
  .span-8,
  .span-7,
  .span-6,
  .span-5,
  .span-4 {
    grid-column: span 12;
  }

  .footer-grid,
  .filter-bar,
  .option-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    padding: 32px 24px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section,
  .page-section,
  .hero-section,
  .cta-section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-title {
    font-size: 1.56rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .hero-stage,
  .solution-visual-frame,
  .showcase-panel {
    min-height: 320px;
  }

  .device-stack {
    inset: 30px 24px 24px;
  }

  .device-screen {
    min-height: 180px;
  }

  .device-screen.small {
    min-height: 140px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .article-media {
    height: 210px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    flex-basis: auto;
    height: 48px;
  }
}

/* 2026 redesign overrides */
:root {
  --bg: #f3f7fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-soft: #f8fafd;
  --surface-muted: #f7f9fc;
  --surface-cream: #fff7f1;
  --text: #0a1d5a;
  --text-muted: #53647b;
  --text-soft: #8190a6;
  --navy: #0a1d5a;
  --navy-strong: #081645;
  --navy-soft: #113f9e;
  --orange: #00a6bb;
  --orange-deep: #113f9e;
  --orange-soft: rgba(0, 166, 187, 0.12);
  --line: rgba(100, 123, 156, 0.18);
  --line-strong: rgba(15, 34, 62, 0.18);
  --shadow-card: 0 18px 55px rgba(10, 29, 61, 0.08);
  --shadow-float: 0 28px 90px rgba(6, 18, 38, 0.15);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 166, 187, 0.14), transparent 26%),
    radial-gradient(circle at 0% 20%, rgba(15, 34, 62, 0.11), transparent 22%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

.site-shell {
  overflow: clip;
}

.site-main {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(140, 166, 198, 0.16);
  background: rgba(248, 251, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.site-header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(118, 142, 171, 0.2);
  box-shadow: 0 16px 40px rgba(7, 23, 48, 0.08);
}

.site-header__glow {
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.75;
}

.site-header__glow--one {
  top: -42px;
  inset-inline-start: -18px;
  width: 180px;
  height: 180px;
  background: rgba(18, 181, 201, 0.18);
}

.site-header__glow--two {
  top: -90px;
  inset-inline-end: 12%;
  width: 220px;
  height: 220px;
  background: rgba(15, 31, 61, 0.12);
}

.header-inner {
  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
}

.brand {
  margin-inline-start: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(18, 181, 201, 0.96), rgba(15, 31, 61, 1));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(13, 76, 96, 0.22);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.nav-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.site-nav {
  justify-content: center;
  gap: 10px;
}

.site-nav a {
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-muted);
  background: transparent;
  border-bottom: 1px solid transparent;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(18, 181, 201, 0.16);
  box-shadow: 0 10px 24px rgba(12, 30, 56, 0.06);
}

.header-cta {
  justify-content: flex-end;
  gap: 10px;
}

.header-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 31, 61, 0.06);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-caption::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(18, 181, 201, 0.12);
}

.btn {
  border-radius: 16px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #38d8ea);
  box-shadow: 0 16px 34px rgba(18, 181, 201, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #13bdd3, #2abfd6);
}

.btn-outline {
  border-color: rgba(16, 32, 55, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  border-color: rgba(18, 181, 201, 0.28);
  background: rgba(18, 181, 201, 0.08);
}

.page-hero {
  position: relative;
  isolation: isolate;
  padding: 42px 0 78px;
}

.page-hero--home {
  padding-top: 56px;
  padding-bottom: 96px;
}

.page-hero__mesh,
.page-hero__glow {
  position: absolute;
  pointer-events: none;
}

.page-hero__mesh {
  inset: 24px 0 0;
  background:
    linear-gradient(135deg, rgba(18, 181, 201, 0.06), transparent 30%),
    linear-gradient(225deg, rgba(15, 31, 61, 0.05), transparent 34%);
  mask-image: radial-gradient(circle at center, #000 55%, transparent 100%);
  z-index: -2;
}

.page-hero__glow {
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.9;
  z-index: -1;
}

.page-hero__glow--one {
  top: 40px;
  inset-inline-start: max(16px, calc(50% - 680px));
  width: 220px;
  height: 220px;
  background: rgba(18, 181, 201, 0.18);
}

.page-hero__glow--two {
  top: 24px;
  inset-inline-end: max(16px, calc(50% - 640px));
  width: 320px;
  height: 320px;
  background: rgba(15, 31, 61, 0.13);
}

.page-hero__grid {
  display: grid;
  justify-content: start;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: 32px;
  align-items: stretch;
}

.page-hero__content,
.page-hero__visual {
  min-width: 0;
}

.page-hero__content {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px 0;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  max-width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 181, 201, 0.16);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(13, 27, 45, 0.06);
  font-size: 0.94rem;
  font-weight: 800;
}

.page-hero__eyebrow .bi {
  font-size: 1.1rem;
  color: var(--orange-deep);
}

.page-hero__title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.95;
}

.page-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(112, 140, 177, 0.14);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.page-hero__chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #51d7df);
}

.page-hero__visual {
  display: flex;
  align-items: stretch;
}

.hero-console {
  width: 100%;
  min-height: 100%;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(10, 25, 48, 0.96), rgba(7, 18, 35, 0.94));
  border: 1px solid rgba(101, 139, 190, 0.16);
  box-shadow: var(--shadow-float);
  color: #fff;
}

.hero-console__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-console__dots {
  display: flex;
  gap: 6px;
}

.hero-console__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-console__dots span:first-child {
  background: #ff7b7b;
}

.hero-console__dots span:nth-child(2) {
  background: #ffd266;
}

.hero-console__dots span:last-child {
  background: #68d2a0;
}

.hero-console__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.hero-console__stat {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-console__stat-label,
.hero-console__stat-note,
.hero-console__preview-head span,
.hero-console__list li span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.hero-console__stat-value {
  display: block;
  margin: 6px 0;
  font-size: 1.38rem;
}

.hero-console__preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-console__preview-head {
  display: grid;
  gap: 5px;
}

.hero-console__preview-head strong {
  font-size: 1.04rem;
}

.hero-console__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hero-console__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-console__list li strong {
  font-size: 0.96rem;
}

.hero-console__placeholder {
  display: grid;
  gap: 10px;
}

.hero-console__placeholder span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18));
}

.hero-console__placeholder span:nth-child(2) {
  width: 78%;
}

.hero-console__placeholder span:nth-child(3) {
  width: 62%;
}

.page-hero--home .page-hero__content {
  padding-top: 42px;
  max-width: 800px;

}

.page-hero--home .page-hero__title {
  line-height: 1.12;
}

.page-hero--home .hero-console {
  position: relative;
  overflow: hidden;
}

.page-hero--home .hero-console::before {
  content: "";
  position: absolute;
  inset: auto auto -28px -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 181, 201, 0.36), transparent 62%);
}

.page-hero--dark .page-hero__content,
.page-hero--detail .page-hero__content {
  padding-top: 12px;
}

.page-hero--dark .page-hero__eyebrow,
.page-hero--detail .page-hero__eyebrow {
  background: rgba(15, 31, 61, 0.07);
}

.breadcrumbs {
  padding-top: 22px;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(120, 143, 175, 0.14);
}

.breadcrumbs-list li,
.breadcrumbs-list a {
  color: var(--text-soft);
  font-weight: 700;
}

.breadcrumbs-list li:last-child {
  color: var(--navy);
}

.page-section--tight {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-title--compact {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
}

.content-card,
.stat-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(116, 143, 179, 0.15);
  box-shadow: var(--shadow-card);
}

.content-card {
  padding: 28px;
}

.content-card--article {
  padding: 34px;
}

.content-card h3,
.stat-card h3 {
  margin-bottom: 16px;
}

.stat-card {
  padding: 24px;
}

.hero-mini-list {
  display: grid;
  gap: 12px;
}

.hero-mini-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(116, 143, 179, 0.14);
}

.hero-mini-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-mini-list span {
  color: var(--text-soft);
}

.hero-mini-list strong {
  color: var(--navy);
  text-align: left;
}

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

.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-placeholder {
  min-height: 220px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 31, 61, 0.9), rgba(18, 181, 201, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-grid,
.contact-grid,
.request-grid {
  align-items: start;
}

.sidebar-stack {
  display: grid;
  gap: 18px;
}

.filter-bar {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(121, 146, 179, 0.15);
  box-shadow: var(--shadow-card);
}

.filter-bar input,
.filter-bar select,
.contact-form input,
.contact-form textarea,
.request-form input,
.request-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(115, 141, 175, 0.2);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.filter-bar input:focus,
.filter-bar select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(18, 181, 201, 0.38);
  box-shadow: 0 0 0 4px rgba(18, 181, 201, 0.12);
}

.contact-form,
.request-form {
  display: grid;
  gap: 16px;
}

.article-card,
.feature-card,
.sector-card,
.feature-pod {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(116, 143, 179, 0.14);
  box-shadow: var(--shadow-card);
}

.article-card,
.feature-pod {
  padding: 22px;
}

.article-card:hover,
.feature-card:hover,
.sector-card:hover,
.feature-pod:hover,
.content-card:hover,
.stat-card:hover {
  transform: translateY(-3px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 24px 60px rgba(9, 24, 45, 0.1);
  border-color: rgba(18, 181, 201, 0.22);
}

.article-media {
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15, 31, 61, 0.9), rgba(18, 181, 201, 0.58));
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-deep);
  font-weight: 800;
}

.trust-band {
  position: relative;
  margin-top: -34px;
  z-index: 2;
}

.trust-ribbon {
  justify-content: center;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(122, 148, 182, 0.14);
  box-shadow: 0 20px 40px rgba(10, 25, 48, 0.08);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(244, 249, 255, 0.9);
  color: var(--navy);
  font-weight: 800;
}

.solution-band,
.sector-showcase {
  align-items: center;
}

.solution-visual-frame,
.showcase-panel {
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(8, 19, 39, 0.98), rgba(15, 31, 61, 0.9));
  box-shadow: var(--shadow-float);
  position: relative;
  overflow: hidden;
}

.workflow-band {
  position: relative;
  background:
    linear-gradient(135deg, rgba(8, 19, 39, 0.98), rgba(15, 31, 61, 0.94));
  color: #fff;
}

.workflow-band .section-heading p,
.workflow-band .workflow-step p,
.workflow-band .rich-content {
  color: rgba(255, 255, 255, 0.72);
}

.workflow-step {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(117, 142, 174, 0.15);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  font-weight: 800;
}

.cta-band {
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(10, 25, 48, 0.98), rgba(15, 31, 61, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-float);
}

.site-footer {
  position: relative;
  margin-top: 26px;
  background:
    linear-gradient(180deg, rgba(11, 25, 48, 1), rgba(7, 18, 35, 1));
}

.footer-brand__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand__head .brand-mark {
  width: 48px;
  height: 48px;
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .nav-panel {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 86px;
    grid-template-columns: 1fr auto;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(122, 147, 180, 0.18);
    box-shadow: var(--shadow-float);
  }

  .nav-panel.is-open {
    display: grid;
  }

  .site-nav,
  .header-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .header-caption {
    justify-content: center;
  }

  .page-hero__grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__content {
    padding-top: 0;
  }

  .hero-console__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 1.35rem;
  }

  .brand-copy strong {
    font-size: 1.12rem;
  }

  .page-hero {
    padding-top: 28px;
    padding-bottom: 68px;
  }

  .page-hero--home {
    padding-top: 34px;
    padding-bottom: 78px;
  }

  .page-hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .page-hero__subtitle {
    font-size: 1rem;
    line-height: 1.9;
  }

  .page-hero__actions,
  .inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__actions .btn,
  .inline-actions .btn {
    width: 100%;
  }

  .content-card,
  .content-card--article,
  .stat-card,
  .hero-console {
    padding: 20px;
    border-radius: 24px;
  }

  .trust-band {
    margin-top: -22px;
  }
}

/* 2026 brand refinement */
:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-soft: #f7fbff;
  --surface-muted: #f7f9fc;
  --surface-cream: #f7fbff;
  --text: #0a1d5a;
  --text-muted: #53647b;
  --text-soft: #8190a6;
  --navy: #0a1d5a;
  --navy-strong: #081645;
  --navy-soft: #113f9e;
  --orange: #00a6bb;
  --orange-deep: #113f9e;
  --orange-soft: rgba(0, 166, 187, 0.12);
  --line: rgba(100, 123, 156, 0.18);
  --line-strong: rgba(15, 34, 62, 0.18);
  --shadow-card: 0 18px 52px rgba(9, 20, 40, 0.08);
  --shadow-float: 0 32px 90px rgba(8, 18, 34, 0.16);
}

body {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 166, 187, 0.14), transparent 26%),
    radial-gradient(circle at 0% 18%, rgba(15, 34, 62, 0.11), transparent 22%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

body.nav-open {
  overflow: hidden;
}

.on-dark,
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4,
.on-dark strong,
.on-dark a {
  color: #fff;
}

.on-dark p,
.on-dark .card-text,
.on-dark .rich-content,
.on-dark .hero-mini-list span,
.on-dark .meta-date {
  color: rgba(255, 255, 255, 0.76);
}

.site-header {
  background: rgba(251, 253, 255, 0.82);
}

.header-inner {
  grid-template-columns: auto 1fr auto;
  gap: 18px;
}

.brand {
  gap: 12px;
}

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo--desktop {
  width: 170px;
}

.brand-logo--mobile {
  display: none;
  width: 46px;
}

.brand-copy {
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.02rem;
}

.brand-copy small {
  font-size: 0.8rem;
}

.header-caption {
  background: rgba(0, 166, 187, 0.08);
  color: var(--navy);
  border: 1px solid rgba(0, 166, 187, 0.14);
}

.header-caption::before {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(0, 166, 187, 0.14);
}

.nav-backdrop {
  display: none;
}

.nav-panel__head {
  display: none;
}

.nav-close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(15, 34, 62, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle {
  margin-inline-start: auto;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #42d4e0);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #42d4e0, #42d4e0);
}

.btn-elevated {
  box-shadow: 0 18px 36px rgba(0, 166, 187, 0.22);
}

.page-hero__eyebrow {
  border-color: rgba(0, 166, 187, 0.16);
}

.page-hero__eyebrow .bi {
  color: var(--orange);
}

.page-hero__chip::before {
  background: linear-gradient(135deg, var(--orange), #42d4e0);
}

.page-hero__glow--one {
  background: rgba(0, 166, 187, 0.18);
}

.hero-console {
  background:
    linear-gradient(180deg, rgba(11, 22, 41, 0.98), rgba(15, 34, 62, 0.96));
}

.article-card,
.mosaic-card,
.feature-pod,
.content-card,
.stat-card,
.form-card,
.story-card {
  position: relative;
  overflow: hidden;
}

.article-card::before,
.mosaic-card::before,
.feature-pod::before,
.content-card::before,
.stat-card::before,
.form-card::before,
.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 35%);
  pointer-events: none;
}

.article-card,
.mosaic-card,
.feature-pod {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
  border: 1px solid rgba(107, 132, 168, 0.15);
}

.mosaic-card.soft {
  background:
    linear-gradient(135deg, rgba(255, 244, 236, 0.98), rgba(255, 250, 245, 0.94));
}

.mosaic-card.dark,
.dark-card,
.story-card--dark {
  background:
    linear-gradient(180deg, rgba(9, 20, 40, 0.98), rgba(15, 34, 62, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
}

.story-card--accent {
  background:
    linear-gradient(135deg, rgba(255, 244, 236, 0.96), rgba(255, 255, 255, 0.94));
}

.mosaic-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mosaic-card__index {
  color: rgba(15, 34, 62, 0.28);
  font-size: 1.25rem;
  font-weight: 800;
}

.dark .mosaic-card__index,
.on-dark .mosaic-card__index {
  color: rgba(255, 255, 255, 0.22);
}

.mosaic-card h3,
.article-card h3,
.feature-pod h3 {
  font-size: 1.34rem;
  margin: 0;
}

.mosaic-card h3 a,
.article-card h3 a,
.feature-pod h3 a {
  color: inherit;
}

.mosaic-card-media,
.story-card__visual {
  min-height: 160px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 166, 187, 0.16), rgba(15, 34, 62, 0.08));
  border: 1px solid rgba(0, 166, 187, 0.12);
}

.mosaic-card-media img,
.story-card__visual img,
.story-card__logo-shell img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 24px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  gap: 22px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(109, 133, 167, 0.15);
  box-shadow: var(--shadow-card);
}

.story-card__content {
  display: grid;
  align-content: start;
  gap: 14px;
}

.story-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 166, 187, 0.1);
  color: var(--orange-deep);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: lowercase;
}

.story-card__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
}

.story-card__logo-shell {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 241, 0.95));
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(15, 34, 62, 0.05);
  border: 1px solid rgba(15, 34, 62, 0.08);
  color: var(--navy);
  font-weight: 800;
}

.card-link:hover {
  border-color: rgba(0, 166, 187, 0.18);
  background: rgba(0, 166, 187, 0.08);
}

.card-link .bi {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--orange-deep);
  box-shadow: 0 10px 18px rgba(15, 34, 62, 0.08);
}

.card-link--button {
  padding: 12px 16px;
}

.on-dark .card-link--button,
.on-dark .card-link,
.dark-card .card-link--button,
.dark-card .card-link,
.mosaic-card.dark .card-link--button,
.mosaic-card.dark .card-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.article-card {
  padding: 0;
  gap: 0;
}

.article-card__body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.article-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.98), rgba(255, 245, 238, 0.96));
}

.article-media {
  min-height: 220px;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card,
.stat-card,
.form-card {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(109, 133, 167, 0.14);
  box-shadow: var(--shadow-card);
}

.content-card,
.form-card {
  padding: 28px;
}

.stat-card {
  padding: 24px;
}

.form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.field-label {
  color: var(--navy);
  font-weight: 700;
}

.hero-mini-list strong {
  font-size: 1rem;
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 20, 40, 0.99), rgba(15, 34, 62, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 166, 187, 0.22), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.08), transparent 16%);
  pointer-events: none;
}

.cta-band__brand,
.cta-band__signals {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-band__brand {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.cta-band__logo {
  width: 56px;
  height: 56px;
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0;
}

.cta-copy p {
  max-width: 60ch;
  margin: 0;
}

.cta-band__signals span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-logo {
  width: min(220px, 100%);
  height: auto;
}

.footer-kicker {
  color: #ffb78c;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .brand-logo--desktop,
  .brand-copy {
    display: none;
  }

  .brand-logo--mobile {
    display: block;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 11, 21, 0.46);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 59;
  }

  .nav-backdrop.is-visible {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .nav-panel {
    position: fixed;
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: auto;
    width: min(88vw, 380px);
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(110, 134, 166, 0.18);
    box-shadow: var(--shadow-float);
    transform: translateX(calc(100% + 32px));
    transition: transform 0.24s ease;
    z-index: 60;
  }

  .nav-panel.is-open {
    display: grid;
    transform: translateX(0);
  }

  .nav-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-panel__logo {
    width: 150px;
    height: auto;
  }

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

  .site-nav a {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .header-cta {
    align-items: stretch;
  }

  .header-cta .btn,
  .header-caption {
    width: 100%;
    justify-content: center;
  }

  .story-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    margin-inline-start: 0;
  }

  .page-hero__actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .mosaic-card,
  .article-card,
  .feature-pod,
  .story-card,
  .content-card,
  .stat-card,
  .form-card {
    border-radius: 24px;
  }

  .cta-band {
    padding: 24px;
  }
}

/* 2026 homepage refinement */
.page-hero--home {
  position: relative;
  padding: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero--home .page-hero__banner,
.page-hero--home .page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero--home .page-hero__banner {
  background-image: var(--hero-banner);
  background-size: cover;
  background-position: center top;
  transform: scale(1.01);
}

.page-hero--home .page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 32, 0.1) 0%, rgba(7, 17, 32, 0.16) 18%, rgba(7, 17, 32, 0.64) 56%, rgba(7, 17, 32, 0.84) 100%),
    linear-gradient(180deg, rgba(7, 17, 32, 0.06) 0%, rgba(7, 17, 32, 0.22) 64%, rgba(7, 17, 32, 0.8) 100%);
}

.page-hero__home-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 22px;
  padding-top: 20px;
  padding-bottom: 36px;
}

.page-hero--home .page-hero__content {
  padding: 34px 32px;
  border-radius: 32px;

}

.page-hero--home .page-hero__eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.page-hero--home .page-hero__title,
.page-hero--home .page-hero__subtitle {
  color: #fff;
}

.page-hero--home .page-hero__subtitle {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero--home .page-hero__chip {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.page-hero__metrics {
  display: grid;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(9, 20, 40, 0.94), rgba(15, 34, 62, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-float);
}

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

.page-hero__metric-card {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero__metric-card span,
.page-hero__metric-card small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.page-hero__metric-card strong {
  display: block;
  margin: 6px 0;
  font-size: 1.25rem;
}

.page-hero__inline-preview {
  display: grid;
  gap: 10px;
}

.page-hero__inline-preview strong {
  font-size: 1rem;
}

.page-hero__inline-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero__inline-list span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.page-hero__inline-list em {
  font-style: normal;
  color: #fff;
}

.signal-strip {
  margin-top: -8px;
  background: linear-gradient(90deg, var(--navy-strong), var(--navy));
}

.section-heading--centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.editorial-shell,
.feature-matrix,
.sector-board {
  display: grid;
  gap: 28px;
}

.feature-matrix {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-pod {
  min-height: 100%;
}

.feature-pod--featured {
  background: linear-gradient(180deg, rgba(255, 247, 241, 0.98), rgba(255, 255, 255, 0.96));
}

.solution-copy {
  display: grid;
  gap: 14px;
  padding: 40px;
}

.solution-visual__image,
.showcase-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.sector-board {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
}

.sector-board__content,
.sector-board__visual {
  min-width: 0;
}

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

.content-card--inverted {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.content-card--inverted .rich-content {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1080px) {
  .page-hero__metrics-grid,
  .feature-matrix,
  .workflow-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-hero--home {
    min-height: auto;
  }

  .page-hero__home-shell {
    padding-top: 102px;
    padding-bottom: 22px;
  }

  .page-hero--home .page-hero__content {
    margin-inline-start: 0;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .page-hero__metrics,
  .page-hero__metric-card {
    border-radius: 22px;
  }

  .page-hero__metrics-grid,
  .feature-matrix,
  .workflow-rail {
    grid-template-columns: 1fr;
  }
}

/* 2026 final UX refinement */
body,
button,
input,
select,
textarea {
  font-family: "Cairo", sans-serif;
}

.site-header {
  background: rgba(251, 253, 255, 0.9);
}

.site-header__glow {
  position: absolute;
  inset: auto auto 0 0;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.site-header__glow--one {
  top: -60px;
  right: 8%;
  background: rgba(0, 166, 187, 0.12);
}

.site-header__glow--two {
  top: -60px;
  left: 14%;
  background: rgba(23, 48, 82, 0.08);
}

.page-hero--home {
  min-height: min(100svh, 860px);
}

.page-hero--home .page-hero__banner {
  background-position: center center;
}

.page-hero__home-shell {
  min-height: min(100svh, 860px);
  align-content: center;
}

.page-hero__home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.page-hero--home .page-hero__content {
  max-width: 800px;

}

.page-hero__sidecar {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.page-hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-hero__panel-head strong {
  color: #fff;
}

.page-hero__panel-head span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.page-hero__metrics,
.page-hero__inline-preview {
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(9, 20, 40, 0.88), rgba(15, 34, 62, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.page-hero__metric-card strong,
.page-hero__inline-preview strong,
.page-hero__inline-list em {
  color: #fff;
}

.page-hero__inline-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-hero__inline-list span {
  justify-content: space-between;
  gap: 14px;
  border-radius: 18px;
}

.hero-console--image {
  padding: 18px;
}

.hero-console__image-shell {
  min-height: 280px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-console__image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-card,
.article-card,
.feature-pod,
.content-card,
.stat-card,
.form-card,
.story-card,
.faq-item {
  backdrop-filter: blur(12px);
}

.mosaic-card,
.feature-pod {
  align-content: start;
}

.card-link--button {
  margin-top: auto;
}

.card-link--button span:first-child {
  line-height: 1.3;
}

.content-card--article,
.rich-content {
  line-height: 2;
}

.showcase-panel__image,
.solution-visual__image {
  object-position: center;
}

.cta-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr) auto;
  align-items: center;
}

.cta-copy h2,
.cta-copy p,
.cta-band__brand,
.cta-band__signals span {
  color: rgba(255, 255, 255, 0.92);
}

.cta-band .btn-ghost-light {
  color: #fff;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 1080px) {
  .page-hero__home-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-hero__home-shell {
    min-height: min(100svh, 780px);
    padding-top: 96px;
  }

  .page-hero--home .page-hero__content,
  .page-hero__metrics,
  .page-hero__inline-preview {
    border-radius: 24px;
  }

  .hero-console__image-shell {
    min-height: 220px;
  }
}

/* 2026 mobile nav + hero polish */
.site-header {
  z-index: 1200;
  isolation: isolate;
  overflow: visible;
}

.nav-toggle {
  position: relative;
  z-index: 1250;
}

.nav-backdrop {
  z-index: 1290;
}

.nav-panel {
  z-index: 1300;
}

.hero-badge.hero-badge-light {
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  justify-self: start;
  white-space: nowrap;
}

.page-hero__title {
  text-wrap: balance;
  line-height: 1.08;
}

.page-hero__title.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-inline-start: 8px;
  vertical-align: middle;
  background: currentColor;
  animation: heroCaret 0.75s steps(1) infinite;
}

.page-hero__title-text {
  display: inline;
}

.page-hero__sidecar,
.page-hero__visual {
  min-width: 0;
}

.page-hero__image-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(9, 20, 40, 0.98), rgba(15, 34, 62, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 60px rgba(6, 14, 28, 0.22);
}

.page-hero__image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 166, 187, 0.28), transparent 26%);
  pointer-events: none;
}

.page-hero__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__image-card--home {
  min-height: 360px;
}

.page-hero__media-notes {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.page-hero__media-note {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 34, 62, 0.08);
  box-shadow: var(--shadow-card);
}

.page-hero__media-note span {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero__media-note strong {
  color: var(--navy);
  line-height: 1.7;
}

.page-hero__metrics,
.page-hero__inline-preview {
  box-shadow: 0 18px 36px rgba(6, 14, 28, 0.18);
}

.rich-content {
  display: grid;
  gap: 18px;
  font-size: 1.02rem;
  line-height: 2.05;
  color: var(--text-muted);
}

.rich-content > :first-child {
  margin-top: 0;
}

.rich-content > :last-child {
  margin-bottom: 0;
}

.rich-content p,
.rich-content ul,
.rich-content ol,
.rich-content blockquote {
  margin: 0;
}

.rich-content strong,
.rich-content b {
  color: var(--navy);
  font-weight: 800;
}

.rich-content ul,
.rich-content ol {
  padding: 0;
  list-style: none;
}

.rich-content ul li,
.rich-content ol li {
  position: relative;
  padding-inline-start: 20px;
}

.rich-content ul li::before,
.rich-content ol li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.95em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #42d4e0);
  transform: translateY(-50%);
}

.rich-content blockquote {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 244, 236, 0.96), rgba(255, 255, 255, 0.92));
  border-inline-start: 4px solid var(--orange);
  color: var(--navy);
}

.on-dark .rich-content strong,
.dark-card .rich-content strong,
.content-card--inverted .rich-content strong {
  color: #fff;
}

.on-dark .rich-content blockquote,
.dark-card .rich-content blockquote,
.content-card--inverted .rich-content blockquote {
  background: rgba(255, 255, 255, 0.08);
  border-inline-start-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.92);
}

@keyframes heroCaret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (max-width: 980px) {
  .nav-backdrop {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 12px;
    bottom: 12px;
    right: 12px;
    left: auto;
    width: min(88vw, 360px);
    max-width: calc(100vw - 24px);
    min-height: calc(100svh - 24px);
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: start;
    overflow-y: auto;
  }

  .nav-panel.is-open {
    transform: translateX(0);
  }

  .site-nav {
    align-content: start;
    overflow: visible;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
  }

  .header-cta {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-hero__title {
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.85rem);
  }

  .page-hero__image-card,
  .page-hero__image-card--home {
    min-height: 240px;
    border-radius: 24px;
  }

  .page-hero__media-note {
    border-radius: 18px;
  }

  .rich-content {
    font-size: 0.98rem;
    line-height: 1.95;
  }
}

.nav-toggle .bi,
.nav-close .bi {
  font-size: 1.15rem;
}

.icon-box .bi {
  font-size: 1.3rem;
}

.story-card__logo-shell .bi,
.mosaic-card-media__placeholder .bi,
.article-media__placeholder .bi {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.story-card__logo-shell .bi {
  color: var(--orange-deep);
}

.on-dark .story-card__logo-shell .bi,
.dark-card .story-card__logo-shell .bi,
.mosaic-card.dark .mosaic-card-media__placeholder .bi {
  color: #fff;
}

.mosaic-card-media__placeholder,
.article-media__placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(0, 166, 187, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(255, 244, 236, 0.96), rgba(243, 247, 255, 0.94));
  color: var(--navy);
}

.article-media__placeholder {
  min-height: 220px;
}
