:root {
  --ink: #101820;
  --ink-soft: #1a2b3a;
  --cream: #f4f1ea;
  --paper: #fffdf8;
  --orange: #ff4d2e;
  --orange-dark: #d93d23;
  --muted: #667079;
  --border: #ddd7cd;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 4%, rgba(255, 77, 46, .11), transparent 27rem),
    radial-gradient(circle at 96% 38%, rgba(23, 58, 89, .08), transparent 34rem),
    var(--cream);
  font-family: "Noto Kufi Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; inset-inline-start: 16px; top: -80px; z-index: 100; padding: 10px 18px; background: var(--orange); color: var(--ink); border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--border); box-shadow: 0 10px 35px rgba(16,24,32,.06); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 190px; flex: 0 0 auto; }
.brand img { width: 100%; border-radius: 12px; }
.nav { display: flex; gap: 34px; align-items: center; font-size: 14px; font-weight: 700; }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: -7px; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s ease; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.region-switcher { min-height: 44px; padding: 5px 9px; display: flex; align-items: center; gap: 7px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,253,248,.56); }
.region-switcher > span { color: var(--muted); font-size: 9px; font-weight: 800; }
.region-switcher select { max-width: 122px; border: 0; outline: 0; color: var(--ink); background: transparent; font: inherit; font-size: 11px; font-weight: 850; cursor: pointer; }
.region-switcher:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,77,46,.12); }
.language-button { border: 1px solid var(--border); border-radius: 12px; background: transparent; color: var(--ink); font-weight: 800; min-width: 45px; min-height: 42px; cursor: pointer; }
.language-button:hover, .language-button:focus-visible { border-color: var(--orange); outline: none; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px; border-radius: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .nav a:focus-visible { outline: 3px solid color-mix(in srgb, var(--orange) 45%, transparent); outline-offset: 4px; }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 13px; }
.button-primary { background: var(--orange); color: var(--ink); box-shadow: 0 14px 32px rgba(255,77,46,.24); }
.button-primary:hover { background: #ff6248; box-shadow: 0 18px 38px rgba(255,77,46,.3); }
.button-dark { background: var(--ink); color: var(--cream); }
.button-dark:hover { background: var(--ink-soft); }
.button-outline-light { color: var(--cream); border: 1px solid rgba(244,241,234,.45); }
.button-outline-light:hover { border-color: var(--cream); background: rgba(244,241,234,.08); }
.text-link { font-weight: 800; padding-block: 12px; border-bottom: 1px solid var(--ink); }

.hero { position: relative; overflow: hidden; padding: 88px 0 118px; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(16,24,32,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,24,32,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.hero-glow { position: absolute; width: 540px; height: 540px; inset-inline-start: -260px; top: -220px; border-radius: 50%; background: rgba(255,77,46,.12); filter: blur(12px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.07fr .93fr; gap: 74px; align-items: center; }
.hero-copy, .hero-visual { min-width: 0; }
.eyebrow { margin: 0 0 14px; color: var(--orange-dark); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; max-width: 720px; font-size: clamp(42px, 6vw, 74px); line-height: 1.18; letter-spacing: -.045em; }
h1 span { color: var(--orange); }
.hero-lead { max-width: 670px; margin-bottom: 32px; color: #4a535b; font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 38px; color: var(--muted); font-size: 13px; font-weight: 700; }
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row span::before { content: ""; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }

.hero-visual { position: relative; padding: 24px; color: var(--cream); background: linear-gradient(145deg, #101820, #172a38); border: 1px solid #2a3945; border-radius: var(--radius-lg); box-shadow: 0 36px 90px rgba(16,24,32,.22); }
.hero-visual::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(244,241,234,.09); border-radius: 24px; pointer-events: none; }
.visual-topline, .visual-footer { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.visual-topline { padding: 2px 4px 22px; font-size: 13px; font-weight: 800; }
.status { display: flex; align-items: center; gap: 7px; color: #c6d0d7; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,77,46,.12); }
.metric-card { position: relative; min-height: 200px; padding: 28px; display: flex; align-items: flex-end; justify-content: space-between; overflow: hidden; background: var(--orange); color: var(--ink); border-radius: 24px; }
.metric-card small { display: block; margin-bottom: 6px; font-weight: 800; }
.metric-card strong { font: 900 64px/1 "Segoe UI", Arial, sans-serif; letter-spacing: -.06em; }
.pulse-rings { position: absolute; inset-inline-end: -50px; top: -50px; width: 240px; height: 240px; }
.pulse-rings i { position: absolute; inset: 0; border: 1px solid rgba(16,24,32,.28); border-radius: 50%; }
.pulse-rings i:nth-child(2) { inset: 35px; }
.pulse-rings i:nth-child(3) { inset: 72px; background: var(--ink); border: 0; }
.process-mini { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 28px 4px; }
.process-mini div { display: grid; gap: 3px; text-align: center; font-size: 12px; }
.process-mini b { color: var(--orange); font: 800 13px/1 "Segoe UI", Arial, sans-serif; }
.process-mini > i { flex: 1; height: 1px; background: #41515e; }
.visual-footer { border-top: 1px solid #31414e; padding: 22px 4px 2px; }
.visual-footer div { display: grid; gap: 3px; }
.visual-footer small { color: #9fabb4; font-size: 11px; }
.visual-footer strong { font-size: 14px; }

.section { padding: 105px 0; }
.section-heading { max-width: 710px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 15px; font-size: clamp(32px, 4vw, 52px); line-height: 1.25; letter-spacing: -.035em; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.feature-card { grid-column: span 5; }
.feature-card.featured, .feature-card:nth-child(4) { grid-column: span 7; }
.feature-card { min-height: 265px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255,253,248,.6); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--orange); box-shadow: 0 18px 42px rgba(16,24,32,.08); }
.feature-card.featured { background: var(--orange); border-color: var(--orange); }
.feature-index { display: inline-flex; margin-bottom: 44px; color: var(--orange-dark); font: 800 13px/1 "Segoe UI", Arial, sans-serif; }
.featured .feature-index { color: var(--ink); }
.feature-card h3 { margin-bottom: 12px; font-size: 19px; line-height: 1.5; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.featured p { color: #292e31; }

.live-map-section { position: relative; padding-top: 28px; }
.live-map-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 34px; }
.live-map-heading .section-heading { margin-bottom: 0; }
.map-heading-badges { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: flex-end; }
.map-heading-badges > span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,253,248,.68); color: var(--muted); font-size: 11px; font-weight: 850; }
.map-heading-badges i { width: 7px; height: 7px; border-radius: 50%; background: #25a56a; box-shadow: 0 0 0 5px rgba(37,165,106,.12); animation: map-status-pulse 2.2s ease-in-out infinite; }
.map-shell { position: relative; overflow: hidden; border: 1px solid #cfc8bd; border-radius: 28px; background: #f8f6f1; box-shadow: 0 32px 90px rgba(16,24,32,.13); transition: inset .22s ease, border-radius .22s ease; }
.map-toolbar { min-height: 82px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--cream); background: var(--ink); }
.map-toolbar-title, .map-toolbar-actions { display: flex; align-items: center; gap: 13px; }
.map-toolbar-title div { display: grid; gap: 1px; }
.map-toolbar-title strong { font-size: 14px; }
.map-toolbar-title small { color: #aab6be; font-size: 10px; }
.map-app-icon { display: grid; place-items: center; width: 45px; height: 45px; color: var(--ink); background: var(--orange); border-radius: 13px; font: 900 13px/1 "Segoe UI", Arial, sans-serif; }
.map-filters { padding: 4px; display: flex; gap: 3px; border: 1px solid #34444f; border-radius: 12px; background: #182630; }
.map-filters button, .map-fullscreen { min-height: 36px; border: 0; color: #b6c0c6; background: transparent; border-radius: 8px; font: inherit; font-size: 11px; font-weight: 800; cursor: pointer; }
.map-filters button { padding-inline: 13px; }
.map-filters button.is-active { color: var(--ink); background: var(--cream); }
.map-fullscreen { padding: 0 12px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid #455460; color: var(--cream); }
.map-fullscreen:hover, .map-fullscreen:focus-visible { border-color: var(--orange); outline: none; }
.map-layout { min-height: 720px; display: grid; grid-template-columns: minmax(0, 1fr) 318px; }
.map-stage { position: relative; min-width: 0; overflow: hidden; border-inline-end: 1px solid var(--border); }
#riyadh-live-map { width: 100%; height: 100%; min-height: 720px; background: #e9e6de; }
#riyadh-live-map .leaflet-tile-pane { filter: saturate(.58) contrast(.94) brightness(1.05); }
#riyadh-live-map .leaflet-control-attribution { padding: 3px 7px; color: #65717a; background: rgba(244,241,234,.84); font-size: 8px; backdrop-filter: blur(8px); }
#riyadh-live-map .leaflet-control-attribution a { color: #173a59; }
#riyadh-live-map .leaflet-control-zoom { overflow: hidden; border: 1px solid rgba(16,24,32,.15); border-radius: 11px; box-shadow: 0 8px 24px rgba(16,24,32,.14); }
#riyadh-live-map .leaflet-control-zoom a { color: var(--ink); background: rgba(255,253,248,.92); }
.map-kpis { position: absolute; z-index: 500; inset-inline-start: 18px; top: 18px; display: flex; overflow: hidden; border: 1px solid rgba(16,24,32,.12); border-radius: 15px; background: rgba(255,253,248,.9); box-shadow: 0 12px 34px rgba(16,24,32,.12); backdrop-filter: blur(12px); }
.map-kpis div { min-width: 118px; padding: 12px 14px; display: grid; gap: 2px; border-inline-end: 1px solid var(--border); }
.map-kpis div:last-child { border-inline-end: 0; }
.map-kpis small { color: var(--muted); font-size: 9px; font-weight: 800; }
.map-kpis strong { direction: ltr; text-align: start; font: 900 18px/1.2 "Segoe UI", Arial, sans-serif; }
.map-kpis strong span { font-size: 8px; letter-spacing: .05em; }
.route-live-status { position: absolute; z-index: 500; inset-inline-start: 18px; bottom: 18px; padding: 10px 13px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(16,24,32,.12); border-radius: 14px; background: rgba(255,253,248,.91); box-shadow: 0 12px 32px rgba(16,24,32,.12); backdrop-filter: blur(12px); }
.route-live-status > div { display: grid; gap: 1px; }
.route-live-status small { color: var(--muted); font-size: 7px; font-weight: 800; }
.route-live-status b { font-size: 9px; }
.route-wave { position: relative; display: grid; place-items: center; width: 30px; height: 30px; }
.route-wave i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #25a56a; }
.route-wave i:nth-child(2), .route-wave i:nth-child(3) { width: 20px; height: 20px; border: 1px solid rgba(37,165,106,.48); background: transparent; animation: route-wave 2.2s ease-out infinite; }
.route-wave i:nth-child(3) { animation-delay: 1.1s; }
.map-legend { position: absolute; z-index: 500; inset-inline-end: 18px; bottom: 18px; padding: 9px 12px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(16,24,32,.12); border-radius: 999px; background: rgba(255,253,248,.91); color: var(--muted); box-shadow: 0 10px 28px rgba(16,24,32,.1); backdrop-filter: blur(10px); font-size: 8px; font-weight: 800; }
.map-legend > span { display: flex; align-items: center; gap: 6px; }
.map-legend i { width: 8px; height: 8px; border-radius: 50%; }
.map-legend .sale { background: var(--orange); }
.map-legend .collection { background: #173a59; }
.map-legend .planned { width: 19px; height: 2px; border-radius: 0; background: repeating-linear-gradient(90deg, #7c8991 0 5px, transparent 5px 8px); }
.map-legend .actual { width: 19px; height: 3px; border-radius: 999px; background: var(--orange); }
.map-legend .start { background: #fff; border: 2px solid #173a59; }
.map-legend .stop { width: 7px; height: 7px; background: #fff; border: 2px solid var(--orange); }
.rep-panel { min-width: 0; padding: 17px; background: #f8f6f1; }
.rep-panel-header { padding: 4px 3px 14px; display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--border); }
.rep-panel-header > div { display: grid; gap: 2px; }
.rep-panel-header strong { font-size: 13px; }
.rep-panel-header small { color: var(--muted); font-size: 9px; }
.rep-panel-header > span { align-self: start; padding: 5px 8px; border-radius: 8px; color: #117548; background: #dff4e9; font: 800 10px/1 "Segoe UI", Arial, sans-serif; }
.rep-list { display: grid; gap: 5px; padding-top: 10px; }
.rep-row { width: 100%; min-height: 57px; padding: 7px; display: grid; grid-template-columns: 37px minmax(0,1fr) auto; gap: 9px; align-items: center; text-align: start; color: var(--ink); border: 1px solid transparent; border-radius: 13px; background: transparent; font: inherit; cursor: pointer; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.rep-row:hover, .rep-row.is-active { border-color: #d9d3ca; background: var(--paper); transform: translateX(-2px); }
html[dir="ltr"] .rep-row:hover, html[dir="ltr"] .rep-row.is-active { transform: translateX(2px); }
.rep-avatar { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 11px; color: #fff; font: 900 10px/1 "Segoe UI", Arial, sans-serif; }
.rep-avatar.sale { background: var(--orange); }
.rep-avatar.collection { background: #173a59; }
.rep-details { min-width: 0; display: grid; gap: 1px; }
.rep-details strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.rep-details small { overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; font-size: 8px; }
.rep-row > b { direction: ltr; color: var(--ink); font: 850 10px/1 "Segoe UI", Arial, sans-serif; }
.rep-performance-board { padding: 30px; border-top: 1px solid var(--border); background: #f4f1ea; }
.performance-heading { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 35px; align-items: end; }
.performance-kicker { display: inline-flex; margin-bottom: 7px; color: var(--orange-dark); font-size: 9px; font-weight: 900; letter-spacing: .03em; }
.performance-heading h3 { margin-bottom: 7px; font-size: clamp(21px, 2.6vw, 31px); line-height: 1.35; letter-spacing: -.025em; }
.performance-heading p { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 11px; }
.performance-summary { display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); overflow: hidden; border: 1px solid #d8d2c9; border-radius: 15px; background: var(--paper); box-shadow: 0 10px 30px rgba(16,24,32,.06); }
.performance-summary div { min-width: 140px; padding: 13px 15px; display: grid; gap: 2px; border-inline-end: 1px solid #ddd7ce; }
.performance-summary div:last-child { border-inline-end: 0; }
.performance-summary small { color: var(--muted); font-size: 7px; font-weight: 800; }
.performance-summary strong { direction: ltr; text-align: start; font: 900 21px/1.2 "Segoe UI", Arial, sans-serif; }
.performance-legend { margin: 24px 0 9px; padding: 0 10px; display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 8px; }
.performance-legend > span { display: inline-flex; align-items: center; gap: 6px; }
.performance-legend > span:last-child { margin-inline-start: auto; }
.performance-legend i { width: 17px; height: 4px; border-radius: 999px; }
.performance-legend .target { background: var(--orange); }
.performance-legend .rating { background: #173a59; }
.performance-chart { overflow: hidden; border: 1px solid #d9d3ca; border-radius: 17px; background: var(--paper); box-shadow: 0 14px 38px rgba(16,24,32,.055); }
.performance-row { width: 100%; min-height: 78px; padding: 10px 13px; display: grid; grid-template-columns: minmax(185px,1.2fr) minmax(115px,.65fr) minmax(310px,2fr) 88px; gap: 18px; align-items: center; text-align: start; color: var(--ink); border: 0; border-bottom: 1px solid #e5dfd6; background: transparent; font: inherit; cursor: pointer; transition: background .18s ease, transform .18s ease, box-shadow .18s ease; }
.performance-row:last-child { border-bottom: 0; }
.performance-row:hover, .performance-row:focus-visible { position: relative; z-index: 1; outline: none; background: #fff6f2; box-shadow: inset 4px 0 0 var(--orange); transform: translateX(-2px); }
html[dir="ltr"] .performance-row:hover, html[dir="ltr"] .performance-row:focus-visible { box-shadow: inset -4px 0 0 var(--orange); transform: translateX(2px); }
.performance-person { min-width: 0; display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 10px; align-items: center; }
.performance-person > i { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; border-radius: 12px; font: 900 9px/1 "Segoe UI", Arial, sans-serif; font-style: normal; }
.performance-person > i.sale { background: var(--orange); }
.performance-person > i.collection { background: #173a59; }
.performance-person > span { min-width: 0; display: grid; gap: 2px; }
.performance-person b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
.performance-person small { overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; font: 700 7px/1.3 "Segoe UI", Arial, sans-serif; }
.performance-achieved { min-width: 0; display: grid; gap: 2px; }
.performance-achieved small { color: var(--muted); font-size: 7px; font-weight: 750; }
.performance-achieved b { overflow: hidden; direction: ltr; text-align: start; text-overflow: ellipsis; white-space: nowrap; font: 900 13px/1.3 "Segoe UI", Arial, sans-serif; }
.performance-measures { min-width: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.performance-measure { min-width: 0; display: grid; gap: 6px; }
.performance-measure > span { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.performance-measure small { color: var(--muted); font-size: 7px; font-weight: 800; }
.performance-measure b { direction: ltr; font: 900 9px/1 "Segoe UI", Arial, sans-serif; }
.performance-measure > i { height: 7px; overflow: hidden; border-radius: 999px; background: #e5e0d8; }
.performance-measure > i em { display: block; width: var(--score); height: 100%; border-radius: inherit; background: var(--orange); transform-origin: right center; animation: performance-grow .72s cubic-bezier(.2,.7,.2,1) both; }
html[dir="ltr"] .performance-measure > i em { transform-origin: left center; }
.performance-measure.rating > i em { background: #173a59; }
.performance-grade { justify-self: end; min-width: 80px; padding: 7px 8px; text-align: center; border-radius: 999px; font-size: 7px; font-weight: 900; }
.performance-grade.excellent { color: #126f46; background: #dff3e7; }
.performance-grade.strong { color: #315c7c; background: #e2ecf4; }
.performance-grade.support { color: #9b482f; background: #ffe4dd; }
@keyframes performance-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.map-demo-note { margin: 0; padding: 9px 18px; color: #7a7067; border-top: 1px solid var(--border); background: #ede9e1; text-align: center; font-size: 9px; font-weight: 700; }
.rep-map-icon-wrap { background: transparent; border: 0; transition: opacity .2s ease; }
.rep-map-icon { position: relative; display: grid; place-items: center; width: 52px; height: 52px; color: #fff; border: 3px solid rgba(255,255,255,.94); border-radius: 17px 17px 17px 6px; box-shadow: 0 10px 24px rgba(16,24,32,.27), 0 0 0 7px rgba(255,255,255,.26); transform: rotate(-8deg); }
.rep-map-icon span { font: 900 10px/1 "Segoe UI", Arial, sans-serif; transform: rotate(8deg); }
.rep-map-icon em { position: absolute; inset-inline-end: 4px; bottom: 4px; color: rgba(255,255,255,.75); font: 900 9px/1 Arial, sans-serif; transform: rotate(8deg); }
.rep-map-icon.sale { background: var(--orange); }
.rep-map-icon.collection { background: #173a59; }
.rep-map-icon i { position: absolute; inset-inline-end: -4px; top: -4px; width: 10px; height: 10px; border: 2px solid #fff; border-radius: 50%; background: #25a56a; animation: map-status-pulse 2.2s ease-in-out infinite; }
.rep-map-icon-wrap[data-motion-state="stopped"] .rep-map-icon i { background: #f0a93a; animation: none; }
.route-node { filter: drop-shadow(0 2px 3px rgba(16,24,32,.2)); }
.domino-map-popup .leaflet-popup-content-wrapper { padding: 0; overflow: hidden; border-radius: 15px; box-shadow: 0 20px 44px rgba(16,24,32,.2); }
.domino-map-popup .leaflet-popup-content { width: 205px !important; margin: 0; }
.domino-map-popup .leaflet-popup-tip { background: var(--paper); }
.activity-popup { padding: 15px; color: var(--ink); background: var(--paper); border-top: 4px solid var(--orange); }
.activity-popup.collection { border-color: #173a59; }
.activity-popup-heading { display: flex; align-items: center; gap: 7px; }
.activity-popup-heading i { width: 7px; height: 7px; border-radius: 50%; background: #25a56a; }
.activity-popup-heading strong { font-size: 11px; }
.activity-popup p { margin: 10px 0 2px; color: var(--muted); font-size: 9px; }
.activity-popup b { display: block; direction: ltr; text-align: start; font: 900 21px/1.2 "Segoe UI", Arial, sans-serif; }
.activity-popup-context { margin-top: 9px; display: flex; flex-wrap: wrap; gap: 5px; }
.activity-popup-context span { padding: 4px 6px; color: #4f5c64; border: 1px solid #e1dbd2; border-radius: 7px; background: #f6f2eb; font-size: 7px; font-weight: 800; }
.activity-popup small { display: block; margin-top: 7px; color: #8a918f; font-size: 8px; }
.map-shell.is-map-fullscreen { position: fixed; z-index: 1000; inset: 12px; border-radius: 22px; box-shadow: 0 0 0 100vmax rgba(16,24,32,.82); }
.map-shell.is-map-fullscreen .map-layout { height: calc(100vh - 126px); }
.map-shell.is-map-fullscreen #riyadh-live-map { min-height: 100%; }
body.map-is-open { overflow: hidden; }

@keyframes map-status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,165,106,.2); }
  50% { box-shadow: 0 0 0 7px rgba(37,165,106,0); }
}
@keyframes route-wave {
  from { opacity: .7; transform: scale(.45); }
  to { opacity: 0; transform: scale(1.55); }
}

/* Enterprise product proof */
.proof-section { position: relative; overflow: hidden; padding-top: 120px; }
.proof-orb { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(2px); }
.proof-orb-one { width: 420px; height: 420px; inset-inline-end: -260px; top: 210px; border: 1px solid rgba(255,77,46,.22); box-shadow: inset 0 0 100px rgba(255,77,46,.08); }
.proof-orb-two { width: 260px; height: 260px; inset-inline-start: -170px; bottom: 460px; border: 1px solid rgba(23,58,89,.17); }
.proof-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; }
.proof-heading .section-heading { margin-bottom: 34px; }
.proof-live-pill { margin-bottom: 42px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; color: #53616a; border: 1px solid rgba(16,24,32,.12); border-radius: 999px; background: rgba(255,253,248,.72); box-shadow: 0 8px 24px rgba(16,24,32,.06); backdrop-filter: blur(12px); font-size: 10px; font-weight: 850; }
.proof-live-pill i, .live-chip i { width: 7px; height: 7px; border-radius: 50%; background: #25a56a; box-shadow: 0 0 0 5px rgba(37,165,106,.11); }
.artifact-shell { position: relative; padding: 10px; border: 1px solid rgba(16,24,32,.12); border-radius: 31px; background: rgba(255,253,248,.55); box-shadow: 0 2px 3px rgba(16,24,32,.04), 0 16px 40px rgba(16,24,32,.08), 0 48px 110px rgba(16,24,32,.11); backdrop-filter: blur(22px); }
.artifact-shell::before { content: ""; position: absolute; inset: 9px; z-index: -1; border-radius: 23px; box-shadow: 0 0 0 1px rgba(255,255,255,.7); }
.artifact-tabs { padding: 6px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.artifact-tabs button { min-height: 64px; padding: 9px 15px; display: flex; align-items: center; gap: 11px; text-align: start; color: var(--muted); border: 1px solid transparent; border-radius: 16px; background: transparent; font: inherit; cursor: pointer; transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease; }
.artifact-tabs button span { display: grid; place-items: center; width: 31px; height: 31px; flex: 0 0 auto; border: 1px solid #d6d0c6; border-radius: 10px; font: 850 10px/1 "Segoe UI", Arial, sans-serif; }
.artifact-tabs button b { font-size: 12px; }
.artifact-tabs button:hover { color: var(--ink); background: rgba(255,255,255,.55); }
.artifact-tabs button.is-active { color: var(--cream); background: var(--ink); box-shadow: 0 12px 30px rgba(16,24,32,.16); transform: translateY(-1px); }
.artifact-tabs button.is-active span { color: var(--ink); border-color: var(--orange); background: var(--orange); }
.artifact-tabs button:focus-visible { outline: 3px solid rgba(255,77,46,.28); outline-offset: 2px; }
.artifact-stage { min-height: 570px; overflow: hidden; border: 1px solid rgba(16,24,32,.08); border-radius: 24px; background: rgba(244,241,234,.76); }
.artifact-panel { min-height: 570px; padding: 52px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; align-items: center; }
.artifact-panel[hidden] { display: none; }
.artifact-panel.is-active { animation: artifact-in .42s ease both; }
.artifact-copy { max-width: 420px; }
.artifact-kicker { display: inline-flex; margin-bottom: 15px; padding: 7px 10px; color: var(--orange-dark); border: 1px solid #efb9ad; border-radius: 999px; background: #fff3ef; font-size: 9px; font-weight: 900; }
.artifact-copy h3 { margin-bottom: 15px; font-size: clamp(27px, 3vw, 40px); line-height: 1.28; letter-spacing: -.03em; }
.artifact-copy > p { color: var(--muted); font-size: 14px; }
.artifact-points { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 12px; }
.artifact-points li { position: relative; padding-inline-start: 26px; color: #3f4a52; font-size: 12px; font-weight: 750; }
.artifact-points li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: 1px; display: grid; place-items: center; width: 17px; height: 17px; color: var(--cream); background: var(--ink); border-radius: 50%; font: 900 9px/1 Arial, sans-serif; }
.phone-frame { width: min(100%, 335px); margin-inline: auto; padding: 12px; color: var(--ink); border: 7px solid var(--ink); border-radius: 36px; background: var(--paper); box-shadow: 0 2px 2px rgba(16,24,32,.12), 0 20px 44px rgba(16,24,32,.17), 26px 35px 70px rgba(16,24,32,.12); }
.phone-status { padding: 1px 8px 11px; display: flex; justify-content: space-between; direction: ltr; color: #48545c; font: 750 8px/1 "Segoe UI", Arial, sans-serif; }
.phone-title { display: flex; align-items: center; gap: 10px; padding: 9px; border-bottom: 1px solid #ece6dd; }
.phone-title > i { display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); background: var(--orange); border-radius: 11px; font-style: normal; font-weight: 900; }
.phone-title div, .customer-mini div { display: grid; gap: 1px; }
.phone-title b { font-size: 12px; }
.phone-title small, .customer-mini small { color: var(--muted); font: 700 8px/1.4 "Segoe UI", Arial, sans-serif; }
.customer-mini { margin-top: 12px; padding: 10px; display: grid; grid-template-columns: 37px minmax(0,1fr) auto; gap: 9px; align-items: center; border: 1px solid #e4ded5; border-radius: 13px; background: #faf7f1; }
.customer-mini > span { display: grid; place-items: center; width: 37px; height: 37px; color: var(--cream); background: var(--ink); border-radius: 11px; font: 850 10px/1 "Segoe UI", Arial, sans-serif; }
.customer-mini b { font-size: 10px; }
.customer-mini strong { direction: ltr; font: 900 10px/1 "Segoe UI", Arial, sans-serif; }
.amount-field { margin-top: 10px; padding: 16px; text-align: center; border: 1px solid #efb5aa; border-radius: 14px; background: #fff2ed; }
.amount-field small { display: block; color: #975141; font-size: 8px; font-weight: 800; }
.amount-field strong { display: block; margin-top: 4px; direction: ltr; font: 900 25px/1.2 "Segoe UI", Arial, sans-serif; }
.payment-row { margin: 10px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.payment-row button { min-height: 36px; border: 1px solid #ddd6cc; border-radius: 10px; background: transparent; font: inherit; font-size: 9px; font-weight: 800; }
.payment-row button.is-active { color: var(--cream); border-color: var(--ink); background: var(--ink); }
.allocation { padding: 9px; display: flex; justify-content: space-between; gap: 12px; color: #4f5b63; border: 1px dashed #cbc3b8; border-radius: 10px; font-size: 8px; }
.allocation b { color: #148454; font-family: "Segoe UI", Arial, sans-serif; }
.zatca-qr-preview { margin-top: 10px; padding: 9px; display: grid; grid-template-columns: 58px minmax(0,1fr); gap: 10px; align-items: center; border: 1px solid #d6d0c7; border-radius: 12px; background: #fff; }
.zatca-qr-preview[hidden] { display: none; }
.sample-qr { width: 58px; height: 58px; padding: 3px; border: 1px solid #d9d3ca; border-radius: 7px; background: #fff; shape-rendering: crispEdges; }
.zatca-qr-preview > div { min-width: 0; display: grid; gap: 2px; }
.zatca-qr-preview b { font-size: 8px; }
.zatca-qr-preview small { direction: ltr; color: #4f5b63; text-align: start; font: 800 7px/1.4 "Segoe UI", Arial, sans-serif; }
.zatca-qr-preview em { color: #a84632; font-size: 6px; font-style: normal; font-weight: 800; }
.phone-submit { width: 100%; min-height: 43px; margin-top: 11px; color: var(--ink); border: 0; border-radius: 11px; background: var(--orange); font: inherit; font-size: 10px; font-weight: 900; }
.sync-safe { margin: 10px 0 3px; display: flex; justify-content: center; align-items: center; gap: 6px; color: #637078; font-size: 7px; font-weight: 750; }
.sync-safe i { width: 6px; height: 6px; border-radius: 50%; background: #25a56a; }
.workspace-preview, .dispatch-board { min-width: 0; padding: 17px; border: 1px solid #d9d3ca; border-radius: 21px; background: var(--paper); box-shadow: 0 2px 3px rgba(16,24,32,.05), 0 24px 55px rgba(16,24,32,.13); }
.preview-bar { padding-bottom: 13px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #e6e0d7; }
.preview-logo { display: grid; place-items: center; width: 39px; height: 39px; color: var(--ink); background: var(--orange); border-radius: 11px; font: 900 11px/1 "Segoe UI", Arial, sans-serif; }
.preview-bar > div { min-width: 0; display: grid; gap: 1px; }
.preview-bar b { font-size: 11px; }
.preview-bar small { color: var(--muted); font-size: 8px; }
.preview-bar > button { margin-inline-start: auto; width: 31px; height: 31px; border: 1px solid #ddd6cd; border-radius: 9px; background: transparent; }
.customer-head { padding: 18px 0; display: grid; grid-template-columns: 48px minmax(0,1fr) auto; gap: 12px; align-items: center; }
.customer-grade { display: grid; place-items: center; width: 48px; height: 48px; color: var(--cream); background: var(--ink); border-radius: 15px; font: 900 20px/1 "Segoe UI", Arial, sans-serif; }
.customer-head h4 { margin: 0; font-size: 16px; }
.customer-head p { margin: 1px 0 0; color: var(--muted); font-size: 8px; }
.health-pill, .live-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; color: #157348; border-radius: 999px; background: #e2f5ea; font: 850 9px/1 "Segoe UI", Arial, sans-serif; }
.health-pill i { width: 6px; height: 6px; border-radius: 50%; background: #25a56a; }
.customer-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.customer-stats div { min-width: 0; padding: 12px; display: grid; gap: 3px; border: 1px solid #e5dfd6; border-radius: 12px; background: #faf8f3; }
.customer-stats small { color: var(--muted); font-size: 7px; }
.customer-stats b { overflow: hidden; direction: ltr; text-align: start; text-overflow: ellipsis; white-space: nowrap; font: 900 12px/1.4 "Segoe UI", Arial, sans-serif; }
.customer-stats em { color: #168555; font: 800 8px/1 "Segoe UI", Arial, sans-serif; }
.customer-stats em.warn { color: #ce4c31; }
.customer-lower { margin-top: 8px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 7px; }
.mini-chart, .radar-card { min-width: 0; min-height: 145px; padding: 12px; border: 1px solid #e5dfd6; border-radius: 12px; }
.mini-chart > span, .radar-card > span { font-size: 8px; font-weight: 850; }
.mini-chart svg { width: 100%; height: 96px; margin-top: 4px; overflow: visible; }
.chart-area { fill: rgba(255,77,46,.1); }
.chart-line { fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; }
.radar-card { display: flex; flex-direction: column; justify-content: space-between; background: var(--ink); color: var(--cream); }
.radar-card b { font-size: 13px; line-height: 1.45; }
.radar-card small { color: #f1a08f; font-size: 8px; }
.live-chip { margin-inline-start: auto; }
.dispatch-kpis { margin: 10px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.dispatch-kpis div { padding: 12px; border: 1px solid #e4ded5; border-radius: 12px; }
.dispatch-kpis small { display: block; color: var(--muted); font-size: 8px; }
.dispatch-kpis b { font: 900 22px/1.3 "Segoe UI", Arial, sans-serif; }
.dispatch-table { overflow: hidden; border: 1px solid #e3ddd4; border-radius: 13px; }
.dispatch-table > div { min-height: 43px; padding: 8px 10px; display: grid; grid-template-columns: 1.1fr .7fr .8fr 1fr; gap: 8px; align-items: center; border-bottom: 1px solid #ece6dd; font: 750 9px/1.2 "Segoe UI", Arial, sans-serif; }
.dispatch-table > div:last-child { border-bottom: 0; }
.dispatch-table .table-head { min-height: 34px; color: var(--muted); background: #f4f1ea; font-size: 7px; }
.dispatch-table em { justify-self: start; padding: 5px 7px; border-radius: 999px; font-style: normal; font-size: 7px; }
.dispatch-table .ok { color: #14754a; background: #def2e6; }
.dispatch-table .work { color: #3a5d7c; background: #e3edf5; }
.dispatch-table .alert { color: #a33d28; background: #ffe5df; }
.dispatch-alert { margin-top: 10px; padding: 10px; display: grid; grid-template-columns: 30px minmax(0,1fr) auto; gap: 9px; align-items: center; border: 1px solid #efb4a9; border-radius: 12px; background: #fff2ed; }
.dispatch-alert > i { display: grid; place-items: center; width: 30px; height: 30px; color: var(--ink); background: var(--orange); border-radius: 9px; font-style: normal; font-weight: 900; }
.dispatch-alert div { min-width: 0; display: grid; gap: 1px; }
.dispatch-alert b { font-size: 9px; }
.dispatch-alert small { color: #7b5a52; font-size: 7px; }
.dispatch-alert button { min-height: 30px; padding-inline: 10px; color: var(--cream); border: 0; border-radius: 8px; background: var(--ink); font: inherit; font-size: 8px; font-weight: 850; }
.intelligence-heading { max-width: 760px; margin: 112px 0 38px; }
.intelligence-heading h2 { margin-bottom: 14px; font-size: clamp(32px, 4vw, 52px); line-height: 1.25; letter-spacing: -.035em; }
.intelligence-heading > p:last-child { color: var(--muted); font-size: 16px; }
.intelligence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.intel-card { position: relative; min-height: 250px; padding: 24px; overflow: hidden; border: 1px solid rgba(16,24,32,.12); border-radius: 21px; background: rgba(255,253,248,.69); box-shadow: 0 2px 2px rgba(16,24,32,.03), 0 14px 38px rgba(16,24,32,.05); backdrop-filter: blur(12px); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.intel-card:hover { transform: translateY(-5px); border-color: rgba(255,77,46,.5); box-shadow: 0 3px 3px rgba(16,24,32,.04), 0 24px 55px rgba(16,24,32,.1); }
.intel-card > small, .intel-card > div > small { color: var(--orange-dark); font: 900 10px/1 "Segoe UI", Arial, sans-serif; }
.intel-card h3 { margin: 30px 0 9px; font-size: 18px; line-height: 1.4; }
.intel-card p { margin-bottom: 0; color: var(--muted); font-size: 12px; }
.intel-icon { position: absolute; inset-inline-end: 20px; top: 20px; display: grid; place-items: center; min-width: 44px; height: 44px; padding-inline: 8px; color: var(--ink); border: 1px solid #e3a99e; border-radius: 13px; background: #fff1ed; font: 900 11px/1 "Segoe UI", Arial, sans-serif; }
.intel-wide { grid-column: span 2; display: grid; grid-template-columns: .72fr 1.28fr; gap: 22px; }
.intel-wide h3 { margin-top: 30px; }
.expiry-visual { align-self: center; padding-top: 18px; display: grid; gap: 12px; }
.expiry-visual span { position: relative; min-height: 43px; display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; align-items: center; }
.expiry-visual i { grid-column: 1 / -1; height: 7px; overflow: hidden; border-radius: 999px; background: #e6e0d8; }
.expiry-visual i::before { content: ""; display: block; width: var(--progress); height: 100%; border-radius: inherit; background: var(--orange); }
.expiry-visual b { font-size: 9px; }
.expiry-visual em { direction: ltr; color: var(--muted); font: 800 9px/1 "Segoe UI", Arial, sans-serif; }
.intel-dark { color: var(--cream); border-color: #2d3d49; background: var(--ink); }
.intel-dark p { color: #b5c0c7; }
.intel-dark .intel-icon { color: var(--ink); border-color: var(--orange); background: var(--orange); }
.aging-bars { position: absolute; inset-inline: 24px; bottom: 22px; height: 52px; display: flex; align-items: flex-end; gap: 7px; }
.aging-bars i { flex: 1; height: var(--h); border-radius: 5px 5px 2px 2px; background: var(--orange); opacity: .45; }
.aging-bars i:last-child { opacity: 1; }
.next-action { align-self: center; padding: 22px; display: grid; gap: 8px; border: 1px solid #efb4a9; border-radius: 18px; background: #fff1ed; box-shadow: 0 16px 36px rgba(255,77,46,.09); }
.next-action small { color: #9e543f; font-size: 8px; }
.next-action b { font-size: 16px; }
.next-action span { display: flex; align-items: center; gap: 7px; }
.next-action i { width: 7px; height: 7px; border-radius: 50%; background: #25a56a; }
.next-action em { color: #14764a; font-size: 8px; font-style: normal; font-weight: 800; }
.intel-api code { position: absolute; inset-inline: 24px; bottom: 24px; padding: 12px; direction: ltr; color: #cbd6dc; border: 1px solid #30414d; border-radius: 11px; background: var(--ink); font: 750 9px/1.4 Consolas, monospace; }
.intel-api code b { float: right; color: #6cdaa3; }

@keyframes artifact-in { from { opacity: 0; transform: translateY(12px) scale(.995); } to { opacity: 1; transform: none; } }

.trust-section { position: relative; color: var(--cream); background: var(--ink); }
.trust-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(244,241,234,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(244,241,234,.09) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(90deg, #000, transparent 74%); }
.trust-layout { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: center; }
.trust-copy h2 { margin-bottom: 18px; font-size: clamp(34px, 4vw, 52px); line-height: 1.25; letter-spacing: -.035em; }
.trust-copy > p:not(.eyebrow) { color: #bdc6cc; font-size: 15px; }
.compliance-disclaimer { margin-top: 28px; padding: 15px; display: grid; grid-template-columns: 28px 1fr; gap: 10px; border: 1px solid #3c4d59; border-radius: 14px; background: rgba(244,241,234,.05); backdrop-filter: blur(8px); }
.compliance-disclaimer > i { display: grid; place-items: center; width: 28px; height: 28px; color: var(--ink); background: var(--orange); border-radius: 9px; font: 900 12px/1 Georgia, serif; }
.compliance-disclaimer p { margin: 0; color: #aebac1; font-size: 9px; }
.trust-stack { display: grid; gap: 10px; }
.trust-card { min-height: 112px; padding: 18px; display: grid; grid-template-columns: 86px minmax(0,1fr) 30px; gap: 16px; align-items: center; border: 1px solid #31424e; border-radius: 18px; background: rgba(244,241,234,.045); box-shadow: 0 15px 45px rgba(0,0,0,.15); backdrop-filter: blur(14px); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.trust-card:hover { transform: translateX(-5px); border-color: var(--orange); background: rgba(244,241,234,.07); }
html[dir="ltr"] .trust-card:hover { transform: translateX(5px); }
.trust-card > span { display: grid; place-items: center; width: 86px; min-height: 52px; color: var(--orange); border: 1px solid #455660; border-radius: 12px; font: 900 9px/1 "Segoe UI", Arial, sans-serif; letter-spacing: .07em; }
.trust-card h3 { margin: 0 0 4px; font-size: 14px; }
.trust-card p { margin: 0; color: #9facb4; font-size: 9px; }
.trust-card > b { color: #53616b; font: 900 12px/1 "Segoe UI", Arial, sans-serif; }

[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].is-visible { opacity: 1; transform: none; transition: opacity .62s ease, transform .62s cubic-bezier(.2,.7,.2,1); }
.intelligence-grid [data-reveal]:nth-child(2), .trust-stack [data-reveal]:nth-child(2) { transition-delay: .06s; }
.intelligence-grid [data-reveal]:nth-child(3), .trust-stack [data-reveal]:nth-child(3) { transition-delay: .12s; }
.intelligence-grid [data-reveal]:nth-child(4), .trust-stack [data-reveal]:nth-child(4) { transition-delay: .18s; }
.section-dark { color: var(--cream); background: var(--ink); }
.section-heading.light .eyebrow { color: var(--orange); }
#flow { overflow: clip; }
.domino-cycle { --fall-angle: -67deg; display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: clamp(8px, 1.4vw, 18px); perspective: 1400px; }
html[dir="ltr"] .domino-cycle { --fall-angle: 67deg; }
.domino-step { min-width: 0; text-align: center; }
.domino-scene { position: relative; height: 205px; display: flex; align-items: flex-end; justify-content: center; perspective: 900px; }
.domino-scene::after { content: ""; position: absolute; z-index: 0; width: 86px; height: 15px; bottom: -3px; border-radius: 50%; background: rgba(0,0,0,.48); filter: blur(7px); transform: scaleX(.72); }
.domino-stone { position: relative; z-index: 1; width: 86px; height: 158px; padding: 9px; display: flex; flex-direction: column; border: 1px solid #536674; border-radius: 13px; background: linear-gradient(145deg, #2b3944 0%, #111a21 46%, #080d11 100%); box-shadow: inset 2px 2px 1px rgba(255,255,255,.15), inset -4px -5px 10px rgba(0,0,0,.58), 8px 12px 22px rgba(0,0,0,.34); transform-origin: 50% calc(100% - 3px); transform-style: preserve-3d; will-change: transform; }
.domino-stone::before { content: ""; position: absolute; width: 9px; inset-block: 5px; inset-inline-end: -9px; border-radius: 0 7px 7px 0; background: linear-gradient(180deg, #101920, #030608); transform: skewY(36deg); transform-origin: left center; opacity: .88; }
html[dir="rtl"] .domino-stone::before { border-radius: 7px 0 0 7px; transform: skewY(-36deg); transform-origin: right center; }
.domino-stone::after { content: ""; position: absolute; inset: 3px; pointer-events: none; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; }
.domino-stone > em { flex: 0 0 2px; margin: 4px 1px; border-radius: 99px; background: linear-gradient(90deg, rgba(255,255,255,.12), #ff4d2e 24%, #ff806a 50%, #ff4d2e 76%, rgba(255,255,255,.12)); box-shadow: 0 1px 3px rgba(0,0,0,.7); }
.domino-pips { position: relative; flex: 1; display: block; }
.domino-pips i { position: absolute; width: 9px; height: 9px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffad9e 0 12%, #ff4d2e 38% 72%, #c42d18 100%); box-shadow: inset 0 1px 1px rgba(255,255,255,.34), 0 2px 3px rgba(0,0,0,.56); }
.pips-1 i:nth-child(1), .pips-3 i:nth-child(2), .pips-5 i:nth-child(3) { top: 50%; left: 50%; transform: translate(-50%,-50%); }
.pips-2 i:nth-child(1), .pips-3 i:nth-child(1), .pips-4 i:nth-child(1), .pips-5 i:nth-child(1), .pips-6 i:nth-child(1) { top: 14%; left: 15%; }
.pips-2 i:nth-child(2), .pips-3 i:nth-child(3), .pips-4 i:nth-child(4), .pips-5 i:nth-child(5), .pips-6 i:nth-child(6) { right: 15%; bottom: 14%; }
.pips-4 i:nth-child(2), .pips-5 i:nth-child(2), .pips-6 i:nth-child(2) { top: 14%; right: 15%; }
.pips-4 i:nth-child(3), .pips-5 i:nth-child(4), .pips-6 i:nth-child(5) { bottom: 14%; left: 15%; }
.pips-6 i:nth-child(3) { top: 50%; left: 15%; transform: translateY(-50%); }
.pips-6 i:nth-child(4) { top: 50%; right: 15%; transform: translateY(-50%); }
.domino-cycle.is-flow-active .domino-stone { animation: domino-chain-fall 8.2s cubic-bezier(.36,.02,.2,1) infinite; }
.domino-cycle.is-flow-active .domino-step:nth-child(2) .domino-stone { animation-delay: .62s; }
.domino-cycle.is-flow-active .domino-step:nth-child(3) .domino-stone { animation-delay: 1.24s; }
.domino-cycle.is-flow-active .domino-step:nth-child(4) .domino-stone { animation-delay: 1.86s; }
.domino-cycle.is-flow-active .domino-step:nth-child(5) .domino-stone { animation-delay: 2.48s; }
.domino-cycle.is-flow-active .domino-step:nth-child(6) .domino-stone { animation-delay: 3.10s; }
@keyframes domino-chain-fall {
  0%, 7% { transform: rotateZ(0deg) translateZ(0); }
  17%, 69% { transform: rotateZ(var(--fall-angle)) translateZ(5px); }
  83%, 100% { transform: rotateZ(0deg) translateZ(0); }
}
.domino-task { min-height: 190px; margin-top: 12px; padding: 18px 8px 0; border-top: 1px solid #34444f; }
.domino-task > b { display: inline-grid; place-items: center; min-width: 34px; height: 25px; padding-inline: 8px; color: var(--ink); border-radius: 8px; background: var(--orange); font: 950 10px/1 "Segoe UI", Arial, sans-serif; }
.domino-task h3 { margin: 11px 0 8px; color: var(--cream); font-size: 14px; }
.domino-task p { margin: 0; color: #aeb9c0; font-size: 9px; line-height: 1.75; }

.gcc-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 86px; align-items: center; }
.gcc-grid .section-heading { margin-bottom: 0; }
.org-map { padding: 38px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 18px 50px rgba(16,24,32,.07); }
.org-root { padding: 20px; text-align: center; color: var(--cream); background: var(--ink); border-radius: 14px; font: 900 19px/1 "Segoe UI", Arial, sans-serif; }
.org-line { width: 1px; height: 34px; margin: auto; background: var(--orange); }
.org-branches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.org-branches div { position: relative; min-height: 108px; display: grid; place-content: center; gap: 6px; text-align: center; border: 1px solid var(--border); border-radius: 14px; }
.org-branches div.is-current-region { border-color: var(--orange); background: #fff2ed; box-shadow: inset 0 0 0 1px rgba(255,77,46,.18), 0 12px 26px rgba(255,77,46,.1); }
.org-branches div::before { content: ""; position: absolute; width: calc(100% + 13px); height: 1px; top: -18px; inset-inline-start: 50%; background: var(--orange); }
.org-branches div:last-child::before { display: none; }
.org-branches b { font-size: 13px; }
.org-branches span { direction: ltr; color: var(--muted); font-size: 11px; font-weight: 800; }

.cta-section { padding: 10px 0 100px; }
.cta-card { min-height: 240px; padding: 46px 54px; display: flex; align-items: center; justify-content: space-between; gap: 35px; color: var(--cream); background: var(--ink); border-radius: var(--radius-lg); }
.cta-card h2 { margin-bottom: 0; max-width: 650px; font-size: clamp(28px, 4vw, 46px); line-height: 1.25; }
.cta-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.about-hero { padding: 82px 0 92px; border-bottom: 1px solid var(--border); }
.about-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.about-hero h1 { margin-bottom: 24px; font-size: clamp(42px, 5.7vw, 70px); }
.about-hero .hero-lead { margin-bottom: 0; }
.about-summary { padding: 30px; color: var(--cream); background: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-summary-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid #34444f; }
.about-summary-header strong { font-size: 20px; }
.about-summary-header span { color: var(--orange); font: 900 22px/1 "Segoe UI", Arial, sans-serif; }
.summary-list { list-style: none; margin: 0; padding: 18px 0 0; display: grid; gap: 4px; }
.summary-list li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid #263743; }
.summary-list li:last-child { border-bottom: 0; }
.summary-list b { color: var(--orange); font: 800 12px/1 "Segoe UI", Arial, sans-serif; }
.summary-list span { font-size: 13px; font-weight: 750; }
.about-section { padding: 96px 0; }
.about-section.alt { background: var(--paper); border-block: 1px solid var(--border); }
.about-split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: start; }
.about-split .section-heading { position: sticky; top: 116px; margin-bottom: 0; }
.surface-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.surface-card { min-height: 255px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--cream); }
.surface-card.orange { background: var(--orange); border-color: var(--orange); }
.surface-card .surface-tag { display: inline-flex; margin-bottom: 38px; padding: 6px 10px; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; font-size: 10px; font-weight: 900; }
.surface-card.orange .surface-tag { color: var(--ink); border-color: rgba(16,24,32,.28); }
.surface-card h3 { margin-bottom: 11px; font-size: 21px; }
.surface-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.surface-card.orange p { color: #2f3437; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.role-card { padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,253,248,.65); }
.role-card b { display: block; margin-bottom: 9px; font-size: 17px; }
.role-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.principle { padding: 30px; color: var(--cream); background: var(--ink); border-radius: var(--radius-md); }
.principle span { color: var(--orange); font: 900 30px/1 "Segoe UI", Arial, sans-serif; }
.principle h3 { margin: 36px 0 10px; }
.principle p { margin-bottom: 0; color: #b8c1c7; font-size: 13px; }
.compliance-note { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 28px; border: 1px solid #efb4a9; border-radius: 18px; background: #fff6f2; }
.compliance-note strong { display: grid; place-items: center; width: 46px; height: 46px; color: var(--ink); background: var(--orange); border-radius: 13px; font: 900 20px/1 "Segoe UI", Arial, sans-serif; }
.compliance-note h3 { margin-bottom: 7px; }
.compliance-note p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-inner img { width: 145px; border-radius: 10px; }
.footer-inner p { margin: 0; display: flex; gap: 12px; color: var(--muted); font-size: 12px; }

html[dir="ltr"] body { font-family: "Segoe UI", Arial, sans-serif; }
html[dir="ltr"] .eyebrow { letter-spacing: .12em; }

@media (max-width: 1020px) {
  .hero-grid, .gcc-grid { grid-template-columns: minmax(0, 1fr); }
  .about-hero-grid, .about-split { grid-template-columns: minmax(0, 1fr); }
  .about-split .section-heading { position: static; }
  .hero-copy { max-width: 780px; }
  .hero-visual { max-width: 720px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card, .feature-card.featured, .feature-card:nth-child(4) { grid-column: auto; }
  .live-map-heading { align-items: flex-start; flex-direction: column; }
  .map-heading-badges { justify-content: flex-start; }
  .map-layout { grid-template-columns: minmax(0,1fr) 280px; }
  .performance-row { grid-template-columns: minmax(170px,1fr) minmax(100px,.65fr) minmax(260px,1.7fr) 82px; gap: 12px; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .artifact-panel { grid-template-columns: 1fr 1.25fr; padding: 38px; gap: 34px; }
  .intelligence-grid { grid-template-columns: repeat(2, 1fr); }
  .intel-wide { grid-column: span 2; }
  .trust-layout { grid-template-columns: 1fr; gap: 44px; }
  .domino-stone { width: 78px; height: 148px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 74px; gap: 12px; }
  .brand { width: 150px; }
  .nav { display: none; }
  .button-small { display: none; }
  .region-switcher { padding-inline: 7px; }
  .region-switcher > span { display: none; }
  .region-switcher select { max-width: 92px; }
  .hero { padding: 55px 0 76px; }
  .hero-grid { gap: 44px; }
  h1 { font-size: clamp(34px, 10vw, 44px); line-height: 1.24; letter-spacing: -.035em; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .text-link { align-self: flex-start; }
  .trust-row { display: grid; }
  .hero-visual { padding: 15px; border-radius: 24px; }
  .metric-card { min-height: 165px; padding: 22px; }
  .metric-card strong { font-size: 50px; }
  .process-mini { overflow-x: auto; justify-content: flex-start; }
  .process-mini div { min-width: 56px; }
  .process-mini > i { min-width: 22px; }
  .section { padding: 76px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .proof-section { padding-top: 84px; }
  .proof-heading { align-items: flex-start; flex-direction: column; gap: 0; }
  .proof-live-pill { margin: -16px 0 25px; }
  .artifact-shell { padding: 6px; border-radius: 23px; }
  .artifact-tabs { grid-template-columns: 1fr; }
  .artifact-tabs button { min-height: 49px; }
  .artifact-stage { min-height: 0; border-radius: 18px; }
  .artifact-panel { min-height: 0; padding: 28px 18px; grid-template-columns: 1fr; gap: 34px; }
  .artifact-copy h3 { font-size: 28px; }
  .phone-frame { width: min(100%, 315px); }
  .customer-stats { grid-template-columns: 1fr; }
  .customer-lower { grid-template-columns: 1fr; }
  .dispatch-table { overflow-x: auto; }
  .dispatch-table > div { min-width: 430px; }
  .dispatch-alert { grid-template-columns: 30px minmax(0,1fr); }
  .dispatch-alert button { grid-column: 1 / -1; }
  .intelligence-heading { margin-top: 82px; }
  .intelligence-grid { grid-template-columns: 1fr; }
  .intel-wide { grid-column: auto; grid-template-columns: 1fr; }
  .intel-card { min-height: 225px; }
  .intel-wide { min-height: 340px; }
  .trust-card { grid-template-columns: 70px minmax(0,1fr); }
  .trust-card > span { width: 70px; }
  .trust-card > b { display: none; }
  .domino-cycle { margin-inline: -14px; padding: 0 14px 18px; display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: thin; }
  .domino-step { flex: 0 0 174px; scroll-snap-align: start; }
  .domino-scene { height: 190px; }
  .domino-task { min-height: 175px; padding-inline: 5px; }
  .org-map { padding: 22px; }
  .org-branches { grid-template-columns: 1fr; }
  .org-branches div::before { width: 1px; height: 13px; top: -13px; inset-inline-start: 50%; }
  .org-branches div:last-child::before { display: block; }
  .cta-card { padding: 38px 26px; align-items: stretch; flex-direction: column; }
  .live-map-section { padding-top: 8px; }
  .map-shell { border-radius: 21px; }
  .map-toolbar { align-items: flex-start; flex-direction: column; }
  .map-toolbar-actions { width: 100%; align-items: stretch; justify-content: space-between; }
  .map-filters { overflow-x: auto; }
  .map-fullscreen { flex: 0 0 auto; }
  .map-layout { min-height: 0; grid-template-columns: 1fr; }
  .map-stage { min-height: 590px; border-inline-end: 0; border-bottom: 1px solid var(--border); }
  #riyadh-live-map { min-height: 590px; }
  .map-kpis { inset-inline: 10px; top: 10px; overflow-x: auto; max-width: calc(100% - 20px); }
  .map-kpis div { min-width: 102px; padding: 10px; }
  .map-kpis small { font-size: 8px; }
  .map-kpis strong { font-size: 15px; }
  .map-legend { inset-inline: 10px; bottom: 10px; max-width: calc(100% - 20px); overflow-x: auto; justify-content: flex-start; }
  .map-legend > span { flex: 0 0 auto; }
  .route-live-status { inset-inline-start: 10px; bottom: 54px; }
  .rep-panel { max-height: 420px; overflow: auto; }
  .rep-performance-board { padding: 24px 14px; }
  .performance-heading { grid-template-columns: 1fr; gap: 18px; }
  .performance-summary { width: 100%; }
  .performance-summary div { min-width: 0; }
  .performance-legend { overflow-x: auto; }
  .performance-legend > span { flex: 0 0 auto; }
  .performance-legend > span:last-child { margin-inline-start: 0; }
  .performance-chart { display: grid; gap: 8px; overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .performance-row { min-height: 0; padding: 14px; grid-template-columns: minmax(0,1fr) auto; gap: 13px; border: 1px solid #d9d3ca; border-radius: 14px; background: var(--paper); }
  .performance-row:last-child { border-bottom: 1px solid #d9d3ca; }
  .performance-person { grid-column: 1; }
  .performance-achieved { grid-column: 2; text-align: end; }
  .performance-measures { grid-column: 1 / -1; }
  .performance-grade { grid-column: 1 / -1; justify-self: start; }
  .map-shell.is-map-fullscreen { inset: 0; border: 0; border-radius: 0; }
  .map-shell.is-map-fullscreen .map-layout { height: calc(100vh - 166px); overflow: auto; }
  .map-shell.is-map-fullscreen .rep-panel { display: none; }
  .cta-actions { align-items: stretch; flex-direction: column; }
  .about-hero { padding: 56px 0 70px; }
  .about-hero-grid { gap: 38px; }
  .about-summary { padding: 20px; }
  .surface-grid, .role-grid, .principles { grid-template-columns: 1fr; }
  .about-section { padding: 72px 0; }
  .compliance-note { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner p { flex-direction: column; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .domino-cycle.is-flow-active .domino-stone, .artifact-panel.is-active { animation: none !important; }
  .performance-measure > i em { animation: none !important; }
}

/* Progressive disclosure enterprise theme */
:root {
  --pd-bg: #071017;
  --pd-bg-deep: #04090d;
  --pd-surface: #0d1922;
  --pd-surface-raised: #12222d;
  --pd-line: rgba(203, 224, 235, .14);
  --pd-text: #f7fafc;
  --pd-muted: #9aabb6;
  --pd-emerald: #2dd4bf;
  --pd-emerald-deep: #0f766e;
  --pd-cyan: #38bdf8;
}

[hidden] { display: none !important; }

body {
  color: var(--pd-text);
  background:
    radial-gradient(circle at 10% 2%, rgba(45,212,191,.12), transparent 29rem),
    radial-gradient(circle at 92% 28%, rgba(56,189,248,.10), transparent 36rem),
    linear-gradient(180deg, var(--pd-bg-deep), var(--pd-bg) 36%, #09141c);
  font-family: "Readex Pro", "Noto Kufi Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size-adjust: .52;
}

.site-header { border-bottom-color: var(--pd-line); background: rgba(7,16,23,.82); }
.site-header.is-scrolled { border-color: var(--pd-line); box-shadow: 0 15px 50px rgba(0,0,0,.32); }
.brand { width: 174px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(244,241,234,.96); }
.brand img { width: 100%; height: auto; aspect-ratio: 760 / 315; object-fit: contain; border-radius: 7px; }
.nav { color: #d9e3e9; }
.nav a::after { background: var(--pd-emerald); }
.region-switcher { border-color: var(--pd-line); background: rgba(255,255,255,.045); }
.region-switcher > span { color: var(--pd-muted); }
.region-switcher select, .language-button { color: var(--pd-text); }
.region-switcher select option { color: #0a1218; }
.region-switcher:focus-within, .language-button:hover, .language-button:focus-visible { border-color: var(--pd-emerald); box-shadow: 0 0 0 3px rgba(45,212,191,.13); }
.language-button { border-color: var(--pd-line); background: rgba(255,255,255,.035); }
.button-dark { color: #061017; background: var(--pd-text); }
.button-dark:hover { background: #d9f4f1; }
.button-primary { color: #04110f; background: linear-gradient(135deg, var(--pd-emerald), #5eead4); box-shadow: 0 16px 38px rgba(45,212,191,.20); }
.button-primary:hover { background: linear-gradient(135deg, #5eead4, #7dd3fc); box-shadow: 0 20px 44px rgba(45,212,191,.27); }
.button-ghost { min-height: 54px; color: var(--pd-text); border: 1px solid var(--pd-line); background: rgba(255,255,255,.035); }
.button-ghost:hover { border-color: rgba(45,212,191,.58); background: rgba(45,212,191,.07); }
.button:focus-visible, .text-link:focus-visible, .nav a:focus-visible { outline-color: rgba(45,212,191,.62); }

.hero { min-height: calc(100vh - 86px); padding: clamp(64px, 8vw, 110px) 0 92px; display: grid; align-items: center; }
.hero::after { opacity: .16; background-image: linear-gradient(rgba(148,181,198,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(148,181,198,.14) 1px, transparent 1px); }
.hero-glow { background: rgba(45,212,191,.12); filter: blur(32px); }
.hero-grid { gap: clamp(44px, 7vw, 88px); }
.eyebrow { color: var(--pd-emerald); }
h1 { max-width: 780px; font-size: clamp(43px, 6vw, 76px); line-height: 1.13; }
h1 span { color: var(--pd-emerald); }
.hero-lead { max-width: 650px; color: #afbec8; line-height: 1.9; }
.trust-row { color: var(--pd-muted); }
.trust-row span::before { background: var(--pd-emerald); box-shadow: 0 0 0 5px rgba(45,212,191,.09); }
.hero-visual { padding: 24px; border-color: rgba(157,208,219,.17); background: linear-gradient(145deg, rgba(18,34,45,.94), rgba(7,16,23,.98)); box-shadow: 0 38px 110px rgba(0,0,0,.46); backdrop-filter: blur(18px); }
.hero-visual::before { border-color: rgba(94,234,212,.09); }
.visual-topline { color: #c9d7de; }
.status i { background: var(--pd-emerald); box-shadow: 0 0 0 5px rgba(45,212,191,.12); }

.executive-loop { min-height: 274px; padding: 36px 12px; display: grid; grid-template-columns: 1fr 54px 1fr 54px 1fr; align-items: center; }
.loop-node { position: relative; min-width: 0; min-height: 154px; padding: 20px 15px; display: grid; align-content: center; justify-items: center; gap: 11px; border: 1px solid var(--pd-line); border-radius: 22px; background: linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: inset 0 1px rgba(255,255,255,.09), 0 20px 42px rgba(0,0,0,.19); }
.loop-node > i { position: absolute; top: 10px; inset-inline-start: 12px; color: #6f8592; font: 800 9px/1 Arial, sans-serif; }
.loop-node > span { display: grid; place-items: center; width: 50px; height: 50px; color: #04110f; border-radius: 16px; background: var(--pd-emerald); font: 800 22px/1 Arial, sans-serif; }
.loop-node.invoice > span { background: var(--pd-cyan); }
.loop-node.collection > span { color: var(--pd-text); background: #0f766e; }
.loop-node div { display: grid; gap: 2px; text-align: center; }
.loop-node small { color: var(--pd-muted); font-size: 8px; }
.loop-node b { font-size: 15px; }
.loop-connector { position: relative; height: 2px; overflow: hidden; background: rgba(148,181,198,.2); }
.loop-connector i { position: absolute; inset-block: 0; width: 45%; background: linear-gradient(90deg, transparent, var(--pd-emerald), transparent); animation: loop-signal 2.8s ease-in-out infinite; }
.loop-connector:nth-of-type(2) i { animation-delay: 1.15s; }
.loop-impact { padding-top: 20px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--pd-line); }
.loop-impact div { padding: 4px 14px; display: grid; gap: 3px; border-inline-end: 1px solid var(--pd-line); }
.loop-impact div:last-child { border-inline-end: 0; }
.loop-impact small { color: var(--pd-muted); font-size: 9px; }
.loop-impact strong { color: #dffefa; font-size: 12px; }
@keyframes loop-signal { 0% { inset-inline-start: -48%; } 55%,100% { inset-inline-start: 104%; } }

.impact-strip { position: relative; z-index: 2; border-block: 1px solid var(--pd-line); background: rgba(255,255,255,.025); }
.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.impact-grid > div { min-height: 118px; padding: 25px 30px; display: grid; align-content: center; gap: 5px; border-inline-end: 1px solid var(--pd-line); }
.impact-grid > div:last-child { border-inline-end: 0; }
.impact-grid strong { color: var(--pd-text); font-size: 20px; }
.impact-grid span { color: var(--pd-muted); font-size: 12px; }

.section-heading h2 { color: var(--pd-text); }
.section-heading > p:last-child { color: var(--pd-muted); }
.persona-section { position: relative; }
.persona-heading { max-width: 820px; }
.persona-shell { overflow: hidden; border: 1px solid var(--pd-line); border-radius: 30px; background: rgba(13,25,34,.82); box-shadow: 0 32px 90px rgba(0,0,0,.28); }
.persona-tabs { padding: 8px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; border-bottom: 1px solid var(--pd-line); background: rgba(255,255,255,.025); }
.persona-tabs button { min-width: 0; min-height: 84px; padding: 13px 16px; display: grid; grid-template-columns: 32px minmax(0,1fr); align-content: center; gap: 1px 10px; text-align: start; color: var(--pd-muted); border: 1px solid transparent; border-radius: 18px; background: transparent; font: inherit; cursor: pointer; }
.persona-tabs button > span { grid-row: 1 / 3; align-self: center; color: #637a87; font: 800 10px/1 Arial, sans-serif; }
.persona-tabs button b { color: #cbd8df; font-size: 13px; }
.persona-tabs button small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 9px; }
.persona-tabs button:hover { background: rgba(255,255,255,.035); }
.persona-tabs button.is-active { border-color: rgba(45,212,191,.30); background: rgba(45,212,191,.09); box-shadow: inset 0 0 0 1px rgba(45,212,191,.05); }
.persona-tabs button.is-active > span, .persona-tabs button.is-active b { color: var(--pd-emerald); }
.persona-tabs button:focus-visible { outline: 3px solid rgba(45,212,191,.32); outline-offset: -2px; }
.persona-panel { min-height: 570px; padding: clamp(28px,5vw,64px); grid-template-columns: minmax(0,.82fr) minmax(430px,1.18fr); gap: clamp(38px,7vw,90px); align-items: center; }
.persona-panel.is-active { display: grid; animation: persona-enter .35s ease both; }
@keyframes persona-enter { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.persona-copy { max-width: 520px; }
.persona-kicker { display: inline-flex; margin-bottom: 15px; color: var(--pd-emerald); font-size: 10px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.persona-copy h3 { margin-bottom: 16px; font-size: clamp(29px,3.3vw,45px); line-height: 1.3; letter-spacing: -.03em; }
.persona-copy > p { color: var(--pd-muted); font-size: 15px; line-height: 1.85; }
.persona-copy ul { margin: 25px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.persona-copy li { position: relative; padding-inline-start: 24px; color: #c6d4db; font-size: 13px; }
.persona-copy li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--pd-emerald); font-weight: 900; }
.persona-ui { min-width: 0; padding: 22px; border: 1px solid rgba(179,213,225,.16); border-radius: 24px; background: linear-gradient(155deg, #132530, #09151d); box-shadow: inset 0 1px rgba(255,255,255,.07), 0 28px 70px rgba(0,0,0,.36); }
.ui-top { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--pd-line); color: #dfe9ee; font-size: 11px; font-weight: 750; }
.ui-top i { color: var(--pd-emerald); font: 750 9px/1 Arial, sans-serif; }
.route-progress { margin: 22px 0; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; }
.route-progress span { display: grid; }
.route-progress b { font-size: 31px; }
.route-progress small, .next-customer small { color: var(--pd-muted); font-size: 9px; }
.route-progress > em, .load-row > span, .aging-preview i { height: 7px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.08); }
.route-progress > em i, .load-row > span i, .aging-preview i em { display: block; width: var(--progress); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pd-emerald-deep), var(--pd-emerald)); }
.next-customer { padding: 20px; display: grid; gap: 3px; border: 1px solid var(--pd-line); border-radius: 18px; background: rgba(255,255,255,.035); }
.next-customer b { font-size: 17px; }
.next-customer span { direction: ltr; justify-self: start; color: var(--pd-cyan); font-size: 10px; }
.quick-actions { margin-top: 14px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.quick-actions > span { min-height: 76px; display: grid; place-items: center; align-content: center; gap: 5px; color: var(--pd-emerald); border: 1px solid var(--pd-line); border-radius: 16px; background: rgba(255,255,255,.025); font-size: 21px; }
.quick-actions small { color: #cbd8df; font-size: 9px; }
.sync-state { margin-top: 14px; display: flex; align-items: center; gap: 8px; color: var(--pd-muted); font-size: 9px; }
.sync-state i { width: 7px; height: 7px; border-radius: 50%; background: var(--pd-emerald); box-shadow: 0 0 0 5px rgba(45,212,191,.08); }
.warehouse-kpis, .finance-kpis { margin: 20px 0; display: grid; gap: 9px; }
.warehouse-kpis { grid-template-columns: repeat(3,1fr); }
.warehouse-kpis span, .finance-kpis span { padding: 15px; display: grid; gap: 3px; border: 1px solid var(--pd-line); border-radius: 15px; background: rgba(255,255,255,.025); }
.warehouse-kpis small, .finance-kpis small { color: var(--pd-muted); font-size: 8px; }
.warehouse-kpis b, .finance-kpis b { font-size: 22px; }
.warehouse-kpis .warn b { color: #fbbf24; }
.load-row { min-height: 52px; display: grid; grid-template-columns: 74px 1fr 48px; gap: 13px; align-items: center; border-bottom: 1px solid var(--pd-line); font-size: 10px; }
.load-row em { direction: ltr; color: var(--pd-muted); font-style: normal; text-align: end; }
.load-row.has-alert { color: #fbbf24; }
.load-row.has-alert > span i { background: #f59e0b; }
.load-warning, .finance-alert { margin-top: 17px; padding: 13px; display: flex; align-items: center; gap: 10px; color: #fde68a; border: 1px solid rgba(245,158,11,.22); border-radius: 14px; background: rgba(245,158,11,.08); font-size: 10px; }
.load-warning i, .finance-alert i { display: grid; place-items: center; width: 25px; height: 25px; flex: 0 0 auto; border-radius: 9px; background: rgba(245,158,11,.18); font-style: normal; font-weight: 900; }
.finance-kpis { grid-template-columns: repeat(2,1fr); }
.finance-kpis em { color: var(--pd-emerald); font-size: 9px; font-style: normal; }
.aging-preview { display: grid; gap: 13px; }
.aging-preview > div { display: grid; grid-template-columns: 48px 1fr 38px; gap: 10px; align-items: center; }
.aging-preview small { color: var(--pd-muted); font-size: 9px; }
.aging-preview b { direction: ltr; font-size: 9px; text-align: end; }
.finance-alert { color: #bceefc; border-color: rgba(56,189,248,.22); background: rgba(56,189,248,.08); }
.finance-alert i { color: var(--pd-cyan); background: rgba(56,189,248,.13); }

.live-map-section { padding-top: 105px; }
.map-heading-badges > span { color: var(--pd-muted); border-color: var(--pd-line); background: rgba(255,255,255,.03); }
.map-gate { min-height: 470px; padding: clamp(25px,5vw,58px); display: grid; grid-template-columns: minmax(0,.78fr) minmax(470px,1.22fr); gap: clamp(35px,6vw,75px); align-items: center; overflow: hidden; border: 1px solid var(--pd-line); border-radius: 30px; background: linear-gradient(145deg, rgba(15,30,40,.95), rgba(7,16,23,.94)); box-shadow: 0 32px 90px rgba(0,0,0,.28); }
.map-gate.is-loading { opacity: .72; }
.map-gate-copy > span { color: var(--pd-emerald); font-size: 10px; font-weight: 750; }
.map-gate-copy h3 { margin: 12px 0 14px; font-size: clamp(28px,3vw,42px); line-height: 1.32; }
.map-gate-copy p { color: var(--pd-muted); font-size: 13px; line-height: 1.85; }
.map-gate-copy .button { margin-top: 15px; gap: 10px; border: 0; cursor: pointer; }
.map-gate-visual { position: relative; min-height: 330px; overflow: hidden; border: 1px solid rgba(180,214,226,.16); border-radius: 24px; background: radial-gradient(circle at 65% 30%, rgba(56,189,248,.13), transparent 18rem), #0a161e; }
.map-gate-visual::before { content: ""; position: absolute; inset: 0; opacity: .36; background-image: linear-gradient(rgba(130,162,178,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(130,162,178,.16) 1px, transparent 1px); background-size: 34px 34px; }
.map-gate-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-gate-visual path { fill: none; vector-effect: non-scaling-stroke; }
.map-gate-visual .road { stroke: rgba(152,178,191,.14); stroke-width: 18; }
.map-gate-visual .road.thin { stroke-width: 7; }
.map-gate-visual .route { stroke-width: 4; stroke-linecap: round; stroke-dasharray: 8 7; }
.map-gate-visual .route.sale { stroke: var(--pd-emerald); }
.map-gate-visual .route.collection { stroke: var(--pd-cyan); }
.map-gate-visual .route.emerald { stroke: #a7f3d0; }
.gate-marker { position: absolute; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; color: #04110f; border: 3px solid #dffefa; border-radius: 14px 14px 14px 5px; background: var(--pd-emerald); box-shadow: 0 12px 28px rgba(0,0,0,.3); font: 850 9px/1 Arial, sans-serif; }
.gate-marker i { position: absolute; inset-inline-end: -4px; top: -4px; width: 9px; height: 9px; border: 2px solid #dffefa; border-radius: 50%; background: var(--pd-cyan); }
.marker-one { inset-inline-start: 26%; top: 26%; }
.marker-two { inset-inline-end: 14%; top: 43%; background: var(--pd-cyan); }
.marker-three { inset-inline-start: 53%; bottom: 18%; background: #a7f3d0; }
.gate-kpi { position: absolute; z-index: 2; inset-inline-start: 18px; bottom: 18px; padding: 12px 15px; display: grid; border: 1px solid var(--pd-line); border-radius: 14px; background: rgba(7,16,23,.82); backdrop-filter: blur(14px); }
.gate-kpi small { color: var(--pd-muted); font-size: 8px; }
.gate-kpi b { font-size: 15px; }
.map-shell { scroll-margin-top: 100px; }

.feature-card { color: var(--pd-text); border-color: var(--pd-line); background: rgba(255,255,255,.027); }
.feature-card:hover { border-color: var(--pd-emerald); box-shadow: 0 20px 54px rgba(0,0,0,.24); }
.feature-card.featured { color: #04110f; border-color: var(--pd-emerald); background: var(--pd-emerald); }
.feature-index { color: var(--pd-emerald); }
.feature-card p { color: var(--pd-muted); }
.feature-card.featured p { color: #123a36; }
.section-dark { background: var(--pd-bg-deep); }

.engineering-section { border-top: 1px solid var(--pd-line); background: linear-gradient(180deg, #09151d, #050c11); }
.engineering-layout { display: grid; grid-template-columns: minmax(0,.72fr) minmax(520px,1.28fr); gap: clamp(50px,8vw,110px); align-items: start; }
.engineering-intro { position: sticky; top: 130px; }
.engineering-intro h2 { margin-bottom: 18px; font-size: clamp(34px,4.2vw,54px); line-height: 1.26; }
.engineering-intro > p:last-of-type { color: var(--pd-muted); font-size: 15px; line-height: 1.9; }
.engineering-proof { margin-top: 27px; display: grid; gap: 10px; }
.engineering-proof span { display: flex; align-items: center; gap: 10px; color: #c9d7de; font-size: 11px; }
.engineering-proof i { width: 8px; height: 8px; border-radius: 50%; background: var(--pd-emerald); box-shadow: 0 0 0 5px rgba(45,212,191,.08); }
.architecture-accordion { display: grid; gap: 11px; }
.architecture-card { overflow: hidden; border: 1px solid var(--pd-line); border-radius: 20px; background: rgba(255,255,255,.025); }
.architecture-card[open] { border-color: rgba(45,212,191,.3); background: rgba(45,212,191,.045); }
.architecture-card summary { min-height: 98px; padding: 20px; display: grid; grid-template-columns: 42px 1fr 24px; gap: 14px; align-items: center; cursor: pointer; list-style: none; }
.architecture-card summary::-webkit-details-marker { display: none; }
.architecture-card summary > span { color: #65808e; font: 800 10px/1 Arial, sans-serif; }
.architecture-card summary small { color: var(--pd-emerald); font: 750 8px/1.5 Arial, sans-serif; letter-spacing: .08em; }
.architecture-card summary h3 { margin: 3px 0 0; font-size: 16px; }
.architecture-card summary > i { position: relative; width: 22px; height: 22px; }
.architecture-card summary > i::before, .architecture-card summary > i::after { content: ""; position: absolute; inset-inline: 4px; top: 10px; height: 2px; border-radius: 4px; background: var(--pd-muted); }
.architecture-card summary > i::after { transform: rotate(90deg); transition: transform .2s ease; }
.architecture-card[open] summary > i::after { transform: rotate(0); }
.architecture-body { padding: 0 76px 25px 76px; color: var(--pd-muted); }
.architecture-body p { font-size: 12px; line-height: 1.85; }
.architecture-body ul { margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; direction: ltr; }
.architecture-body li, .compliance-chips span { padding: 7px 10px; color: #c8d7de; border: 1px solid var(--pd-line); border-radius: 999px; background: rgba(255,255,255,.025); font: 700 8px/1.2 "Segoe UI", Arial, sans-serif; }
.compliance-chips { display: flex; flex-wrap: wrap; gap: 7px; direction: ltr; }
.engineering-section .compliance-disclaimer { margin-top: 18px; color: #d5dee3; border-color: rgba(56,189,248,.18); background: rgba(56,189,248,.06); }

.cta-card { border: 1px solid rgba(45,212,191,.18); background: linear-gradient(135deg, #0e2029, #071017); box-shadow: 0 30px 90px rgba(0,0,0,.28); }
footer { border-top-color: var(--pd-line); background: var(--pd-bg-deep); }
.footer-inner p { color: var(--pd-muted); }
.footer-inner img { width: 126px; height: auto; padding: 6px; border-radius: 10px; background: #f4f1ea; aspect-ratio: 760 / 315; object-fit: contain; }

@media (max-width: 1060px) {
  .nav { gap: 18px; font-size: 12px; }
  .persona-panel { grid-template-columns: 1fr; }
  .persona-copy { max-width: 720px; }
  .engineering-layout { grid-template-columns: 1fr; }
  .engineering-intro { position: static; max-width: 760px; }
  .map-gate { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero { min-height: 0; padding-top: 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .executive-loop { padding: 28px 0; grid-template-columns: 1fr; gap: 8px; }
  .loop-node { min-height: 112px; grid-template-columns: 50px 1fr; justify-items: start; }
  .loop-node div { text-align: start; }
  .loop-connector { width: 2px; height: 25px; justify-self: center; }
  .loop-connector i { width: 100%; height: 45%; background: linear-gradient(180deg, transparent, var(--pd-emerald), transparent); animation-name: loop-signal-y; }
  @keyframes loop-signal-y { 0% { top: -48%; } 55%,100% { top: 104%; } }
  .loop-impact { grid-template-columns: 1fr; }
  .loop-impact div { padding: 11px 4px; border-inline-end: 0; border-bottom: 1px solid var(--pd-line); }
  .loop-impact div:last-child { border-bottom: 0; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-grid > div { min-height: 92px; padding-inline: 4px; border-inline-end: 0; border-bottom: 1px solid var(--pd-line); }
  .impact-grid > div:last-child { border-bottom: 0; }
  .persona-shell { border-radius: 22px; }
  .persona-tabs { grid-template-columns: 1fr; }
  .persona-tabs button { min-height: 67px; }
  .persona-panel { min-height: 0; padding: 26px 16px; gap: 30px; }
  .persona-ui { padding: 15px; border-radius: 18px; }
  .warehouse-kpis, .finance-kpis { grid-template-columns: 1fr; }
  .map-gate { min-height: 0; padding: 22px 16px; border-radius: 22px; }
  .map-gate-visual { min-height: 270px; }
  .architecture-card summary { min-height: 84px; padding: 15px; grid-template-columns: 30px 1fr 22px; }
  .architecture-body { padding: 0 15px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .loop-connector i, .persona-panel.is-active { animation: none !important; }
}

/* Verified 30-day trial onboarding */
.trial-dialog {
  width: min(900px, calc(100% - 28px));
  max-height: min(920px, calc(100dvh - 28px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--pd-text);
  border: 1px solid rgba(45,212,191,.24);
  border-radius: 28px;
  background: #0a171f;
  box-shadow: 0 40px 140px rgba(0,0,0,.68), inset 0 1px rgba(255,255,255,.06);
}
.trial-dialog::backdrop { background: rgba(1,7,11,.76); backdrop-filter: blur(12px); }
.trial-dialog-shell { position: relative; max-height: min(920px, calc(100dvh - 28px)); padding: clamp(24px,4vw,46px); overflow: auto; overscroll-behavior: contain; }
.trial-dialog-shell::before { content:""; position:absolute; inset:0 0 auto; height:210px; pointer-events:none; background:radial-gradient(circle at 72% 0,rgba(45,212,191,.14),transparent 55%); }
.trial-dialog-close { position: sticky; z-index: 5; top: 0; float: inline-end; width: 42px; height: 42px; display:grid; place-items:center; color:#cbd8df; border:1px solid var(--pd-line); border-radius:13px; background:rgba(7,16,23,.88); font:500 25px/1 Arial,sans-serif; cursor:pointer; }
.trial-dialog-close:hover { color:#fff; border-color:rgba(45,212,191,.4); }
.trial-dialog-brand { position:relative; min-height:68px; margin-bottom:30px; display:flex; align-items:center; gap:18px; }
.trial-dialog-brand img { width:138px; height:auto; padding:7px; border-radius:13px; background:#f4f1ea; aspect-ratio:760/315; object-fit:contain; }
.trial-dialog-brand > div { display:grid; gap:4px; }
.trial-dialog-brand small { color:var(--pd-muted); font-size:9px; }
.trial-dialog-brand strong { color:var(--pd-emerald); font-size:13px; }
.trial-dialog-heading { position:relative; margin-bottom:28px; display:grid; grid-template-columns:44px minmax(0,1fr); gap:15px; align-items:start; }
.trial-dialog-heading > span { width:42px; height:42px; display:grid; place-items:center; color:#071511; border-radius:14px; background:var(--pd-emerald); font:850 10px/1 Arial,sans-serif; }
.trial-dialog-heading h2 { margin:0 0 7px; color:#f3f7f8; font-size:clamp(25px,3.5vw,38px); line-height:1.3; }
.trial-dialog-heading p { margin:0; color:var(--pd-muted); font-size:12px; line-height:1.8; }
.trial-form { position:relative; display:grid; gap:18px; }
.trial-grid { display:grid; gap:16px; }
.trial-grid.two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.trial-form label:not(.trial-check) { min-width:0; display:grid; gap:8px; color:#d8e3e8; font-size:11px; font-weight:650; }
.trial-form label small { color:#8399a5; font-size:8px; font-weight:500; line-height:1.6; }
.trial-form input,.trial-form select { width:100%; min-width:0; height:52px; padding:0 15px; color:#eef6f8; border:1px solid rgba(174,204,216,.22); border-radius:14px; outline:0; background:rgba(255,255,255,.035); font:500 13px/1 "Readex Pro",sans-serif; transition:border-color .18s,box-shadow .18s,background .18s; }
.trial-form input:hover,.trial-form select:hover { border-color:rgba(174,204,216,.38); }
.trial-form input:focus,.trial-form select:focus { border-color:var(--pd-emerald); background:rgba(45,212,191,.045); box-shadow:0 0 0 4px rgba(45,212,191,.1); }
.trial-form input:user-invalid { border-color:rgba(251,113,133,.55); }
.trial-form select { cursor:pointer; }
.trial-check { display:flex; align-items:flex-start; gap:11px; color:#cbd8df; font-size:10px; line-height:1.7; cursor:pointer; }
.trial-check.muted { color:var(--pd-muted); }
.trial-check input { width:18px; height:18px; margin-top:1px; flex:0 0 auto; accent-color:var(--pd-emerald); }
.trial-turnstile { min-height:0; overflow:hidden; }
.trial-form-error { min-height:20px; margin:0; color:#fda4af; font-size:10px; line-height:1.7; }
.trial-submit { width:100%; min-height:54px; border:0; cursor:pointer; }
.trial-submit[disabled] { opacity:.65; cursor:wait; }
.trial-security-note { margin:0; color:#78909c; text-align:center; font-size:9px; line-height:1.7; }
.trial-text-button { justify-self:center; padding:5px 10px; color:var(--pd-cyan); border:0; background:transparent; font:inherit; font-size:10px; cursor:pointer; }
.trial-otp-form { max-width:520px; margin-inline:auto; }
.trial-otp-form input { height:72px; text-align:center; letter-spacing:.7em; font-size:25px; font-weight:750; }
.trial-success-mark { width:74px; height:74px; margin:10px auto 22px; display:grid; place-items:center; color:#04120f; border-radius:25px; background:var(--pd-emerald); box-shadow:0 0 0 12px rgba(45,212,191,.08); font-size:31px; font-weight:900; }
[data-trial-step="success"] { text-align:center; }
[data-trial-step="success"] > h2 { margin-bottom:12px; font-size:clamp(27px,4vw,42px); }
[data-trial-step="success"] > p { max-width:620px; margin:0 auto 25px; color:var(--pd-muted); font-size:12px; line-height:1.9; }
.trial-login-summary { max-width:590px; margin:0 auto 22px; display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.trial-login-summary span { padding:18px; display:grid; gap:5px; border:1px solid var(--pd-line); border-radius:16px; background:rgba(255,255,255,.03); }
.trial-login-summary small { color:var(--pd-muted); font-size:9px; }
.trial-login-summary b { color:var(--pd-emerald); font-size:16px; }
[data-trial-step="success"] > .button { min-width:230px; margin:5px; }
body.trial-dialog-open { overflow:hidden; }

@media (max-width: 680px) {
  .trial-dialog { width:100%; max-height:100dvh; border-width:0; border-radius:0; }
  .trial-dialog-shell { max-height:100dvh; padding:20px 16px 34px; }
  .trial-dialog-brand { margin-bottom:23px; }
  .trial-dialog-brand img { width:116px; }
  .trial-grid.two,.trial-login-summary { grid-template-columns:1fr; }
  .trial-dialog-heading { grid-template-columns:36px minmax(0,1fr); gap:11px; }
  .trial-dialog-heading > span { width:35px; height:35px; border-radius:11px; }
  .trial-dialog-heading h2 { font-size:24px; }
  .trial-form input,.trial-form select { height:50px; font-size:16px; }
}
