/* =========================================================================
   Pro Visions (رؤى الاحتراف) — Enterprise Technology, Integrated
   Dark navy + electric-blue editorial. No build step. Bilingual EN / AR (RTL).
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:        #070b14;   /* deep cyber near-black navy */
  --bg-2:      #0d1424;
  --panel:     rgba(255,255,255,0.03);
  --panel-2:   rgba(255,255,255,0.05);
  --line:      rgba(43,143,224,0.16);
  --line-soft: rgba(255,255,255,0.07);
  --ink:       #eef4fb;
  --muted:     #a7b6cb;   /* body — lifted for AA on navy */
  --muted-2:   #8697b0;   /* micro-labels — lifted to clear AA */

  --blue:      #2b8fe0;   /* Pro Visions electric blue */
  --blue-hi:   #5cb2f5;
  --blue-deep: #6b9fd4;   /* small accents — brightened for contrast */
  --navy:      #103858;   /* brand deep navy */
  --teal:      #52b78e;   /* brand teal-green accent */
  --cyan:      #22d3ee;   /* neon glow accent */
  --cyan-soft: rgba(34,211,238,0.14);
  --grad:      linear-gradient(96deg, #1076bc 0%, #2b8fe0 40%, #22d3ee 78%, #52b78e 120%);
  --glow:      0 0 22px rgba(34,211,238,0.28);

  --nav-h: 76px;
  --pad-x: clamp(20px, 5vw, 96px);
  --maxw: 1360px;

  --font-display: "Clash Display", "Tajawal", system-ui, -apple-system, sans-serif;
  --font-body:    "Satoshi", "Tajawal", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[dir="rtl"] {
  --font-display: "Tajawal", "Clash Display", system-ui, sans-serif;
  --font-body:    "Tajawal", "Satoshi", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
/* NEVER set scroll-behavior:smooth — it corrupts ScrollTrigger (gotcha #1) */

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.lock { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--blue); color: #08131f; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Cyber mesh + grid background (fixed, behind content) ---------- */
.mesh {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(50% 40% at 15% 8%,   rgba(43,143,224,0.30), transparent 60%),
    radial-gradient(48% 38% at 85% 42%,  rgba(34,211,238,0.22), transparent 60%),
    radial-gradient(46% 40% at 25% 78%,  rgba(123,123,255,0.14), transparent 62%),
    radial-gradient(46% 40% at 78% 96%,  rgba(82,183,142,0.12), transparent 62%);
  animation: aurora-drift 26s ease-in-out infinite alternate;
}
@keyframes aurora-drift { from { transform: translate3d(-1.5%,-1%,0) scale(1.02); } to { transform: translate3d(2%,1.5%,0) scale(1.08); } }
.mesh::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(92,178,245,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92,178,245,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15));
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15));
  animation: mesh-pan 90s linear infinite;
}
@keyframes mesh-pan { to { background-position: 56px 56px, 56px 56px; } }

/* ---------- Glass card utility ---------- */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(92,178,245,0.14);
  border-radius: 16px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color .35s, box-shadow .35s, transform .35s var(--ease), background .35s;
}
.glass:hover {
  border-color: rgba(34,211,238,0.38);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.10), 0 18px 48px rgba(0,0,0,0.45), inset 0 0 34px rgba(34,211,238,0.05);
}

/* ---------- Icon base ---------- */
.ic {
  width: 26px; height: 26px; flex-shrink: 0;
  color: var(--blue-hi);
  filter: drop-shadow(0 0 7px rgba(34,211,238,0.35));
}
.ic-lg { width: 34px; height: 34px; }

/* ---------- Section divider ---------- */
.divider {
  height: 1px; max-width: var(--maxw); margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.35), transparent);
}

/* ---------- Themed scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1b2c47; border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #2b4266; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  /* failsafe: if JS/CDN is slow, the loader fades itself out */
  animation: loaderAway .45s ease 2.2s forwards;
}
@keyframes loaderAway { to { opacity: 0; visibility: hidden; } }
.loader-word {
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.35em;
  font-size: clamp(1.4rem, 4vw, 2.4rem); color: var(--blue);
  padding-inline-start: 0.35em;
}
.loader-count {
  position: absolute; inset-inline-end: var(--pad-x); bottom: clamp(28px, 8vh, 80px);
  font-family: var(--font-display); font-weight: 600; color: transparent;
  -webkit-text-stroke: 1px rgba(43,143,224,0.5);
  font-size: clamp(4rem, 16vw, 12rem); line-height: 0.8; display: flex; align-items: flex-end;
}
.loader-count i { font-size: 0.28em; -webkit-text-stroke: 1px rgba(43,143,224,0.5); font-style: normal; margin-inline-start: 0.1em; }
.loader-bar { position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.06); }
.loader-bar span { display: block; height: 100%; width: 0; background: var(--grad); }

/* ---------- Nav ---------- */
.nav { position: fixed; inset-inline: 0; top: 0; z-index: 900; transition: transform .5s var(--ease), background .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,11,20,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line-soft); }
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; height: var(--nav-h);
  padding-inline: var(--pad-x); display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand-mark { height: 40px; width: auto; filter: brightness(0) invert(1); transition: filter .3s; }
.brand:hover .brand-mark { filter: none; }
.nav-links { display: flex; gap: clamp(14px, 2.4vw, 34px); }
.nav-links a { display: inline-flex; align-items: baseline; gap: 6px; font-size: 0.82rem; font-weight: 500; color: var(--muted); transition: color .3s; letter-spacing: 0.01em; }
.nav-links a i { font-style: normal; font-size: 0.62rem; color: var(--blue-deep); font-family: var(--font-display); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active i { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 20px); }
.nav-time { font-variant-numeric: tabular-nums; font-size: 0.76rem; color: var(--muted-2); letter-spacing: 0.04em; }
.lang-toggle { font-size: 0.78rem; font-weight: 600; color: var(--blue); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; transition: background .3s, color .3s; }
.lang-toggle:hover { background: var(--blue); color: #08131f; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; transition: background .35s var(--ease), color .35s, border-color .35s; }
.pill b { transition: transform .35s var(--ease); }
.pill:hover { background: var(--blue); color: #08131f; border-color: var(--blue); }
.pill:hover b { transform: translateX(3px); }
[dir="rtl"] .pill b { transform: scaleX(-1); }
[dir="rtl"] .pill:hover b { transform: scaleX(-1) translateX(3px); }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; position: relative; }
.burger span { position: absolute; left: 50%; top: 50%; width: 16px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease); }
.burger span:first-child { transform: translate(-50%, -4px); }
.burger span:last-child { transform: translate(-50%, 4px); }
body.menu-open .burger span:first-child { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .burger span:last-child { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 800; background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--nav-h) var(--pad-x) 40px; opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-links { display: flex; flex-direction: column; }
.mobile-links a { display: flex; align-items: baseline; gap: 14px; font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 11vw, 3.4rem); line-height: 1.35; color: var(--ink); }
.mobile-links a i { font-size: 0.9rem; color: var(--blue); font-style: normal; }
.mobile-foot { margin-top: auto; padding-top: 30px; display: flex; flex-direction: column; gap: 6px; color: var(--muted); border-top: 1px solid var(--line-soft); }
.mobile-foot a { color: var(--blue); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden; }
#aurora { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; transition: opacity 1.2s ease; }
#aurora.on { opacity: 1; }
.hero-net { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; opacity: 0; transition: opacity 1.4s ease; }
.hero-net.on { opacity: 0.5; }
.hero::after { /* readability wash + bottom fade */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(7,11,20,0.35), transparent 55%),
    linear-gradient(180deg, rgba(7,11,20,0.55) 0%, transparent 22%, transparent 55%, rgba(7,11,20,0.92) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: calc(var(--nav-h) + clamp(20px,5vh,56px)) var(--pad-x) clamp(22px,4vh,44px);
  flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.hero-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 0.8rem; color: var(--muted); letter-spacing: 0.03em; margin-bottom: clamp(12px,2vh,20px); }
.hero-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(82,183,142,0.6); animation: pulse 2.4s infinite; }
.hero-meta em { font-style: normal; color: var(--blue); position: relative; padding-inline-start: 14px; }
.hero-meta em::before { content: ""; position: absolute; inset-inline-start: 0; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--muted-2); transform: translateY(-50%); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(82,183,142,0.5);} 70% { box-shadow: 0 0 0 10px rgba(82,183,142,0);} 100% { box-shadow: 0 0 0 0 rgba(82,183,142,0);} }

.hero-title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; line-height: 0.9; letter-spacing: -0.02em; }
.hero-title .line { display: block; overflow: hidden; padding-block: 0.02em; }
.hero-title .line > span { display: block; font-size: clamp(2.9rem, 10.5vw, 8.4rem); }
.hero-title .l1 > span { color: var(--ink); }
.hero-title .l2 > span { color: transparent; -webkit-text-fill-color: rgba(92,178,245,0.10); -webkit-text-stroke: 1.8px var(--blue-hi); padding-inline-start: clamp(20px, 6vw, 120px); }
.hero-title .l3 > span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
[dir="rtl"] .hero-title { text-transform: none; letter-spacing: normal; line-height: 1.12; }
/* Arabic connected script reads poorly as an open outline — fill line 2 solid instead */
[dir="rtl"] .hero-title .l2 > span { -webkit-text-stroke: 0; -webkit-text-fill-color: rgba(92,178,245,0.32); color: rgba(92,178,245,0.32); text-shadow: 0 0 26px rgba(43,143,224,0.4); }
[dir="rtl"] .hero-title .line > span { letter-spacing: normal; }

.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: clamp(20px, 3.4vh, 40px); flex-wrap: wrap; }
.hero-desc { max-width: 46ch; color: var(--muted); font-size: clamp(0.98rem, 1.4vw, 1.14rem); }
.hero-cta { flex-shrink: 0; }
.hero-cta-ring {
  width: clamp(96px, 12vw, 132px); height: clamp(96px, 12vw, 132px); border-radius: 50%;
  border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  transition: background .4s var(--ease), border-color .4s, transform .4s var(--ease);
}
.hero-cta-ring b { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-cta-ring i { font-style: normal; color: var(--blue); transition: transform .4s var(--ease); }
.hero-cta:hover .hero-cta-ring { background: var(--blue); border-color: var(--blue); color: #08131f; transform: rotate(0); }
.hero-cta:hover .hero-cta-ring i { color: #08131f; transform: translateY(5px); }

.hero-stats { display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; gap: clamp(20px,3vw,48px); margin-top: clamp(18px,3vh,34px); padding-top: clamp(14px,2vh,20px); border-top: 1px solid var(--line-soft); }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat b { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 3.4vw, 2.9rem); color: var(--ink); line-height: 1; }
.stat b.num { color: var(--blue); }
.stat span { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
[dir="rtl"] .stat span { text-transform: none; letter-spacing: 0; }

.hero-scroll { position: absolute; z-index: 2; bottom: 22px; inset-inline-start: var(--pad-x); display: flex; align-items: center; gap: 8px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-2); }
.hero-scroll i { font-style: normal; animation: bob 1.8s infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line-soft); overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 34px; list-style: none; padding: 20px 0; white-space: nowrap; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track li { font-family: var(--font-display); font-weight: 500; font-size: clamp(1rem, 1.8vw, 1.5rem); text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.marquee-track li:nth-child(3n+1) { color: var(--blue); }
@keyframes scroll-x { to { transform: translateX(-50%); } }
[dir="rtl"] .marquee-track { animation-name: scroll-x-rtl; }
@keyframes scroll-x-rtl { to { transform: translateX(50%); } }

/* ---------- Section shell ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8.5vh, 116px) var(--pad-x); }
.sec-head { position: relative; display: flex; align-items: baseline; gap: clamp(16px, 3vw, 40px); padding-bottom: clamp(18px,2.4vh,28px); margin-bottom: clamp(36px, 6vh, 72px); }
.sec-head::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, rgba(34,211,238,0.5), rgba(34,211,238,0.08) 60%, transparent); }
[dir="rtl"] .sec-head::after { background: linear-gradient(270deg, rgba(34,211,238,0.5), rgba(34,211,238,0.08) 60%, transparent); }
.sec-index { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 4vw, 3rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; filter: drop-shadow(0 0 14px rgba(34,211,238,0.35)); }
.sec-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5.4vw, 4.4rem); line-height: 0.98; letter-spacing: -0.02em; word-spacing: 0.06em; text-transform: uppercase; }
[dir="rtl"] .sec-title { text-transform: none; letter-spacing: 0; line-height: 1.2; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.about-copy .lead { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.8vw, 2.3rem); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 26px; }
.about-copy .lead::first-line { color: var(--blue); }
.about-copy p + p { margin-top: 18px; color: var(--muted); font-size: clamp(0.98rem,1.3vw,1.1rem); }
.profile-card { position: relative; border: 1px solid var(--line); border-radius: 16px; padding: 30px; background: var(--panel); overflow: hidden; }
.profile-bar { position: absolute; top: 0; inset-inline: 0; height: 3px; background: var(--grad); }
.profile-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; margin-bottom: 6px; border-bottom: 1px solid var(--line-soft); }
.profile-head span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-2); }
.profile-head b { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.1em; color: var(--blue); }
.profile-facts { display: flex; flex-direction: column; }
.profile-facts > div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.profile-facts > div:last-child { border-bottom: 0; }
.profile-facts dt { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.profile-facts dd { font-weight: 500; text-align: end; color: var(--ink); }
[dir="rtl"] .profile-facts dt, [dir="rtl"] .profile-head span { text-transform: none; letter-spacing: 0; }

/* ---------- Services — full-bleed duotone photo cards ---------- */
.svc-pcard {
  position: relative; overflow: hidden; border-radius: 18px; isolation: isolate;
  min-height: clamp(320px, 34vw, 380px); display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid rgba(92,178,245,0.22); color: var(--ink);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.svc-photo { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); transition: transform 1.1s var(--ease); }
/* large ghosted service glyph — focal + ties the card to its service */
.svc-ghost { position: absolute; z-index: -2; top: -8%; inset-inline-end: -6%; width: 54%; height: auto; color: var(--blue-hi); opacity: 0.10; transform: rotate(-6deg); pointer-events: none; }
.svc-pcard::after { /* scrim for text legibility */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to top, rgba(6,10,18,0.94) 4%, rgba(6,10,18,0.55) 46%, rgba(6,10,18,0.20) 100%);
}
.svc-pcard:hover, .svc-pcard:focus-visible { transform: translateY(-8px); border-color: rgba(34,211,238,0.6); box-shadow: 0 0 0 1px rgba(34,211,238,0.25), 0 30px 70px rgba(0,0,0,0.6), 0 0 50px rgba(34,211,238,0.12); outline: none; }
.svc-pcard:hover .svc-photo, .svc-pcard:focus-visible .svc-photo { transform: scale(1.11); }
.svc-pcard:hover .svc-ghost { opacity: 0.18; }
/* featured card: gradient edge + glow */
.svc-pcard.is-featured { border-color: transparent; box-shadow: 0 0 0 1.5px rgba(34,211,238,0.55), 0 0 46px rgba(34,211,238,0.20), 0 20px 60px rgba(0,0,0,0.5); }
.svc-pcard.is-featured .svc-ghost { opacity: 0.16; }
.svc-pnum { position: absolute; z-index: 1; top: clamp(18px,2vw,24px); inset-inline-start: clamp(20px,2vw,26px); font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 5vw, 3.8rem); color: transparent; -webkit-text-stroke: 1px rgba(147,216,236,0.55); line-height: 1; }
.svc-pcard .ic-tile { position: absolute; z-index: 1; top: clamp(18px,2vw,24px); inset-inline-end: clamp(20px,2vw,26px); width: 48px; height: 48px; border-radius: 13px; background: rgba(34,211,238,0.18); border-color: rgba(34,211,238,0.34); }
.svc-ptxt { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.svc-pcard .svc-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 1.7vw, 1.5rem); line-height: 1.18; min-height: 0; text-shadow: 0 2px 20px rgba(6,10,18,0.85); }
.svc-pcard.is-featured .svc-name { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.svc-pcard .svc-desc { color: #d3ddea; font-size: 0.93rem; line-height: 1.55; text-shadow: 0 1px 14px rgba(6,10,18,0.9); }

/* ---------- Services (glass card grid — legacy, being migrated) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { display: flex; flex-direction: column; gap: 14px; padding: clamp(20px, 2.4vw, 28px); color: var(--ink); }
.svc-card:hover { transform: translateY(-4px); }
.svc-top { display: flex; align-items: center; justify-content: space-between; }
.ic-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(140deg, rgba(34,211,238,0.24), rgba(43,143,224,0.12));
  border: 1px solid rgba(34,211,238,0.34); box-shadow: 0 0 16px rgba(34,211,238,0.10), inset 0 0 12px rgba(34,211,238,0.06);
  transition: box-shadow .35s, background .35s, transform .35s;
}
.svc-card:hover .ic-tile, .sector-tile:hover .ic-tile, .pillar-card:hover .ic-tile { box-shadow: var(--glow); background: rgba(34,211,238,0.20); }
.svc-num { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--blue-deep); }
.svc-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.2; min-height: 2.4em; }
.svc-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.svc-cta { justify-content: center; align-items: flex-start; border-style: dashed; }
.svc-cta h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
.svc-cta p { color: var(--muted); font-size: 0.92rem; }
.svc-cta-link { font-family: var(--font-display); font-weight: 600; color: var(--cyan); }

/* ---------- Approach timeline ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 44px); padding-top: 40px; }
.timeline-line { position: absolute; top: 46px; inset-inline: 0; height: 1px; background: var(--line-soft); }
.timeline-line i { display: block; height: 100%; width: 0; background: var(--grad); }
.step { position: relative; padding-top: 30px; }
.step-dot { position: absolute; top: -34px; inset-inline-start: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--bg); border: 1px solid var(--blue); box-shadow: 0 0 0 4px var(--bg); }
.step-dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--blue); opacity: 0; transition: opacity .4s; }
.step.lit .step-dot::after { opacity: 1; }
.step.lit .step-dot { box-shadow: 0 0 16px rgba(43,143,224,0.6), 0 0 0 4px var(--bg); }
.step-idx { font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; color: var(--blue-deep); }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.9rem); margin: 8px 0 12px; text-transform: uppercase; letter-spacing: 0.01em; }
[dir="rtl"] .step h3 { text-transform: none; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Sectors (icon tile grid) ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 700px)  { .sector-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .sector-grid { grid-template-columns: repeat(5, 1fr); } }
.sector-tile { position: relative; overflow: hidden; padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.sector-tile::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 55% at 22% 0%, rgba(34,211,238,0.14), transparent 62%); opacity: 0; transition: opacity .45s; pointer-events: none; }
.sector-tile:hover { transform: translateY(-5px); border-color: rgba(34,211,238,0.42); box-shadow: 0 0 0 1px rgba(34,211,238,0.14), 0 18px 44px rgba(0,0,0,0.5); }
.sector-tile:hover::before { opacity: 1; }
.sector-tile > * { position: relative; }
.sector-tile h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.25; min-height: 2.5em; }
.sector-tile p { color: var(--muted); font-size: 0.86rem; line-height: 1.5; }

/* ---------- Why Choose Us (numbered rows — distinct from the card grids) ---------- */
.pillar-grid { display: flex; flex-direction: column; gap: 14px; counter-reset: pillar; }
.pillar-card { counter-increment: pillar; display: grid; grid-template-columns: auto 54px 1fr; align-items: center; gap: clamp(18px, 3vw, 44px); padding: clamp(20px, 2.4vw, 30px) clamp(22px, 3vw, 40px); }
.pillar-card::before { content: "0" counter(pillar); font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 2.4rem); color: transparent; -webkit-text-stroke: 1px rgba(92,178,245,0.55); line-height: 1; }
.pillar-card { position: relative; overflow: hidden; }
.pillar-card::after { content: ""; position: absolute; inset-inline-start: 0; top: 14%; bottom: 14%; width: 3px; border-radius: 3px; background: var(--grad); box-shadow: 0 0 16px rgba(34,211,238,0.4); opacity: 0.55; transition: opacity .4s, top .4s, bottom .4s; }
.pillar-card > * { position: relative; }
.pillar-card:hover { transform: translateX(6px); border-color: rgba(34,211,238,0.34); box-shadow: 0 0 0 1px rgba(34,211,238,0.10), 0 14px 40px rgba(0,0,0,0.45); }
.pillar-card:hover::after { opacity: 1; top: 8%; bottom: 8%; }
[dir="rtl"] .pillar-card:hover { transform: translateX(-6px); }
.pillar-card .ic-tile { width: 54px; height: 54px; border-radius: 14px; }
.pillar-card .pillar-txt { display: flex; flex-direction: column; gap: 6px; }
.pillar-card h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem, 1.5vw, 1.4rem); line-height: 1.2; }
.pillar-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.55; max-width: 70ch; }
@media (max-width: 640px) {
  .pillar-card { grid-template-columns: auto 44px 1fr; gap: 16px; padding: 18px 20px; }
  .pillar-card .ic-tile { width: 44px; height: 44px; }
}

/* ---------- Vision / Mission panels ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: clamp(28px, 4vh, 48px); }
.vm-panel { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 14px; }
.vm-panel h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.vm-panel p { color: var(--muted); font-size: clamp(0.94rem, 1.2vw, 1.02rem); line-height: 1.65; }

/* ---------- Logo walls ---------- */
.logos-sub { color: var(--muted); font-size: clamp(1rem,1.5vw,1.3rem); max-width: 46ch; margin-top: -30px; margin-bottom: clamp(30px,5vh,54px); }
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.clients-wall { grid-template-columns: repeat(4, 1fr); }
.chip {
  display: flex; align-items: center; justify-content: center; padding: 22px;
  min-height: 108px; background: rgba(255,255,255,0.035); border-radius: 14px; border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), background .4s, border-color .4s;
}
/* uniform white-monochrome marks (source logos already keyed to transparent) */
.chip img { height: 30px; width: auto; max-width: 74%; object-fit: contain; margin: auto; filter: brightness(0) invert(1); opacity: 0.86; transition: opacity .4s; }
.clients-wall .chip img { height: 34px; }
.chip:hover { transform: translateY(-4px); background: rgba(34,211,238,0.07); border-color: rgba(34,211,238,0.34); box-shadow: 0 0 26px rgba(34,211,238,0.10); }
.chip:hover img { opacity: 1; }
.chip-text span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--muted); letter-spacing: 0.03em; opacity: 0.75; }

/* ---------- About photo band ---------- */
.about-banner { position: relative; overflow: hidden; margin-top: clamp(28px, 4vh, 48px); border-radius: 20px; border: 1px solid rgba(34,211,238,0.22); min-height: clamp(220px, 26vw, 300px); display: flex; align-items: center; justify-content: center; text-align: center; padding: clamp(30px,5vw,64px); box-shadow: 0 0 0 1px rgba(34,211,238,0.08), 0 24px 60px rgba(0,0,0,0.5); }
.about-banner-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.about-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 90% at 50% 50%, rgba(16,56,88,0.35), rgba(6,10,18,0.78)); }
.about-banner-inner { max-width: 40ch; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.about-banner h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.9rem); line-height: 1.14; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pill-glow { background: var(--grad); color: #06101c; border: 0; box-shadow: 0 0 26px rgba(34,211,238,0.35); font-weight: 700; }
.pill-glow:hover { box-shadow: 0 0 40px rgba(34,211,238,0.55); transform: translateY(-2px); }

/* ---------- Statement ---------- */
.statement { text-align: center; position: relative; }
.statement-bg { position: absolute; inset: clamp(24px,4vh,40px) var(--pad-x); border-radius: 24px; overflow: hidden; border: 1px solid var(--line-soft); z-index: -1; }
.statement-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,20,0.82), rgba(7,11,20,0.62) 50%, rgba(7,11,20,0.85)); }
.statement-bg img { width: 100%; height: 100%; object-fit: cover; }
.quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 4.4vw, 3.6rem); line-height: 1.24; letter-spacing: -0.01em; max-width: 20ch; margin: 0 auto; }
.quote .w { color: var(--muted-2); transition: color .3s; }
.quote .w.on { color: var(--ink); }
[dir="rtl"] .quote { max-width: 26ch; }

/* ---------- Contact ---------- */
.contact { position: relative; text-align: center; padding-bottom: clamp(80px,12vh,160px); }
.contact::before { content: ""; position: absolute; inset-inline: 10%; top: 8%; height: 60%; background: radial-gradient(50% 60% at 50% 30%, rgba(34,211,238,0.12), transparent 70%); pointer-events: none; z-index: -1; }
.contact-kicker { display: inline-block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--blue); margin-bottom: 20px; }
[dir="rtl"] .contact-kicker { letter-spacing: 0; }
.mega-link { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; line-height: 0.9; letter-spacing: -0.02em; }
.mega-link .ml1, .mega-link .ml2 { display: block; font-size: clamp(3.4rem, 15vw, 12rem); }
.mega-link .ml1 { color: var(--ink); }
.mega-link .ml2 { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mega-link .ml2 b { -webkit-text-fill-color: var(--blue); display: inline-block; transition: transform .4s var(--ease); }
.mega-link:hover .ml2 b { transform: translate(10px, -10px); }
[dir="rtl"] .mega-link { text-transform: none; letter-spacing: 0; line-height: 1.1; }
[dir="rtl"] .mega-link .ml2 b { transform: scaleX(-1); }
[dir="rtl"] .mega-link:hover .ml2 b { transform: scaleX(-1) translate(10px,-10px); }

.contact-rows { max-width: 720px; margin: clamp(40px,6vh,70px) auto 0; border-top: 1px solid var(--line-soft); }
.crow { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 4px; border-bottom: 1px solid var(--line-soft); transition: padding-inline .35s var(--ease), color .35s; }
.crow:hover:not(.crow-static) { padding-inline: 14px; color: var(--blue); }
.crow-k { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); }
.crow-v { font-family: var(--font-display); font-weight: 500; font-size: clamp(1rem,1.6vw,1.3rem); }
[dir="rtl"] .crow-k { text-transform: none; letter-spacing: 0; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding: clamp(40px,7vh,72px) var(--pad-x) 30px; }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid var(--line-soft); }
.footer-brand { height: 46px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-tag { color: var(--muted); max-width: 46ch; text-align: center; text-wrap: balance; flex: 1 1 300px; }
.footer-2030 { height: 52px; opacity: 0.9; }
.footer-bottom { max-width: var(--maxw); margin: 26px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.copy { font-size: 0.82rem; color: var(--muted-2); }
.socials { display: flex; gap: 22px; }
.socials a { font-size: 0.82rem; color: var(--muted); transition: color .3s; }
.socials a:hover { color: var(--blue); }
.to-top { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); transition: background .3s, color .3s; }
.to-top:hover { background: var(--blue); color: #08131f; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .timeline-line { display: none; }
  .step { padding-top: 0; }
  .step-dot { display: none; }
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .clients-wall { grid-template-columns: repeat(4, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-time { display: none; }
  .burger { display: block; }
  .footer-top { flex-direction: column; text-align: center; }
  .vm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .logo-wall, .clients-wall { grid-template-columns: repeat(2, 1fr); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 26px; }
  .hero-cta { align-self: flex-end; }
  [dir="rtl"] .hero-cta { align-self: flex-start; }
  .hero-stats { grid-template-columns: 1fr 1fr; justify-content: stretch; gap: 20px 28px; }
  .pill { display: none; }
  .chip { min-height: 92px; padding: 16px; }
  .chip img { height: 26px; } .clients-wall .chip img { height: 30px; }
  .hero-title { line-height: 0.99; letter-spacing: 0; }
  .stat span { white-space: nowrap; }
  /* scroll cue collides with the 2×2 stat grid on phones — retire it there */
  .hero-scroll { display: none; }
  .hero-inner { padding-bottom: clamp(28px, 6vh, 44px); }
}

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  #aurora, .hero-net { display: none; }
  .marquee-track { animation: none; flex-wrap: wrap; white-space: normal; width: 100%; justify-content: center; }
  .hero-meta .dot { animation: none; }
}

/* =========================================================================
   ENHANCEMENTS — cursor trailer · command-center dashboards · service
   mini-graphs · impact ROI bento
   ========================================================================= */

/* ---------- Cursor trailer ---------- */
.pv-trail { position: fixed; top: 0; left: 0; width: 460px; height: 460px; margin: -230px 0 0 -230px; border-radius: 50%; pointer-events: none; z-index: 60; opacity: 0;
  background: radial-gradient(circle, rgba(34,211,238,0.15), rgba(43,143,224,0.06) 42%, transparent 70%);
  mix-blend-mode: screen; transition: opacity .5s, width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease); will-change: transform; }
.pv-dot { position: fixed; top: 0; left: 0; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; pointer-events: none; z-index: 61; opacity: 0;
  background: var(--cyan); box-shadow: 0 0 12px rgba(34,211,238,0.9); transition: opacity .5s, transform .05s linear; will-change: transform; }
body.trail-on .pv-trail, body.trail-on .pv-dot { opacity: 1; }
body.trail-grow .pv-trail { width: 620px; height: 620px; margin: -310px 0 0 -310px; }
@media (hover: none) { .pv-trail, .pv-dot { display: none; } }

/* ---------- Command Center dashboards ---------- */
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dash-card { padding: clamp(20px,2.2vw,28px); display: flex; flex-direction: column; gap: 18px; }
.dash-wide { grid-column: 1 / -1; }
.dash-head { display: flex; align-items: center; justify-content: space-between; }
.dash-title { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; }
.dash-live { display: inline-flex; align-items: center; gap: 7px; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; color: var(--teal); }
.dash-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 9px var(--teal); animation: pulse 2s infinite; }
.dash-rings { display: flex; gap: clamp(16px,2vw,30px); }
.dash-ring { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.dash-ring > [data-chart] { width: clamp(88px,9vw,116px); }
.chart-ring { width: 100%; height: auto; display: block; }
.chart-ring-num { fill: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 24px; }
.dash-ring span { font-size: 0.76rem; color: var(--muted); text-align: center; }
.dash-spark { display: flex; flex-direction: column; gap: 8px; }
.dash-spark-lab { font-size: 0.74rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
[dir="rtl"] .dash-spark-lab, [dir="rtl"] .dash-live { letter-spacing: 0; }
.dash-spark [data-chart] { width: 100%; }
.chart-area { width: 100%; height: 52px; display: block; }
.dash-risk { display: flex; align-items: center; gap: clamp(16px,2vw,28px); }
.dash-risk-chart { width: clamp(130px,14vw,164px); flex-shrink: 0; }
.chart-risk { width: 100%; height: auto; display: block; }
.chart-risk-num { fill: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 21px; }
.chart-risk-lab { fill: var(--muted-2); font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.12em; }
.dash-risk-legend { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.dash-risk-legend li { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--muted); }
.dash-risk-legend b { width: 10px; height: 10px; border-radius: 2px; background: var(--d); flex-shrink: 0; }
.dash-risk-legend em { margin-inline-start: auto; font-style: normal; color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.dash-nodes { position: relative; width: 100%; height: clamp(200px,26vw,260px); }
.chart-nodes-canvas { position: absolute; inset: 0; }
.dash-foot { font-size: 0.8rem; color: var(--muted-2); }
.chart-bars { width: 100%; height: 48px; display: block; }

/* ---------- Service card mini-graph ---------- */
.svc-graph { width: 100%; max-width: 170px; height: 40px; margin-bottom: 14px; opacity: 0.92; }
.svc-graph svg { width: 100%; height: 40px; }
.svc-pcard.is-featured .svc-graph { opacity: 1; }

/* ---------- Impact ROI bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(130px,15vw,168px); gap: 16px; }
.bento-card { position: relative; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 16px; padding: clamp(20px,2.2vw,28px); display: flex; flex-direction: column; justify-content: space-between; background: var(--panel); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.bento-card:hover { transform: translateY(-5px); border-color: rgba(34,211,238,0.42); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(34,211,238,0.10); }
.bento-lg { grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-lab { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; position: relative; z-index: 1; }
[dir="rtl"] .bento-lab { letter-spacing: 0; }
.bento-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem,5vw,4.2rem); line-height: 0.95; align-self: flex-end; position: relative; z-index: 1; }
.bento-num i { font-style: normal; font-size: 0.42em; color: var(--muted); }
.bento-txt { font-size: clamp(1.3rem,2.2vw,2rem); align-self: flex-start; }
.grad-1 { background: linear-gradient(150deg, #1076bc 0%, #0c1c34 78%); border-color: transparent; }
.grad-2 { background: linear-gradient(150deg, #128ba6 0%, #0b1a2e 80%); border-color: transparent; }
.grad-3 { background: linear-gradient(150deg, #2a7d5f 0%, #0b1a26 80%); border-color: transparent; }
.grad-4 { background: linear-gradient(120deg, #163a6b 0%, #0a1628 85%); border-color: transparent; }
.grad-1 .bento-lab, .grad-2 .bento-lab, .grad-3 .bento-lab, .grad-4 .bento-lab { color: rgba(255,255,255,0.82); }
.grad-1 .bento-num i, .grad-2 .bento-num i, .grad-3 .bento-num i { color: rgba(255,255,255,0.7); }
.bento-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 80% 20%, rgba(34,211,238,0.10), transparent 60%); opacity: 0; transition: opacity .4s; }
.bento-card:hover::after { opacity: 1; }

/* ---------- Responsive (enhancements) ---------- */
@media (max-width: 900px) {
  .dash-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .bento-lg { grid-row: span 1; }
}
@media (max-width: 520px) {
  .dash-rings { gap: 12px; }
  .dash-risk { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
}
@media (prefers-reduced-motion: reduce) {
  .pv-trail, .pv-dot { display: none !important; }
  .dash-live i { animation: none; }
}
