/* Logara Digital — Clarity design system (Direction C) */
:root {
  --white: #FFFFFF;
  --slate: #1E2227;
  --mid: #5B6168;
  --rule: rgba(30, 34, 39, 0.14);
  --ghost: #E4E6E8;
  --gutter: 48px;
  --sans: 'Archivo', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.2, 1);
  --tint: transparent;
}
html[data-tint="navy"] { --tint: #33415E; }
html[data-tint="green"] { --tint: #33523F; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--white);
  color: var(--slate);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }

/* ---------- nav ---------- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px var(--gutter);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-mark {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2.5px solid var(--slate); position: relative; display: inline-block;
}
.nav-mark::after {
  content: ''; position: absolute; left: 6.5px; top: 6.5px;
  width: 4px; height: 4px; background: var(--slate); border-radius: 50%;
}
.nav-name { font-weight: 500; font-size: 28px; letter-spacing: -0.015em; }
/* the watch mark as the letter o */
.o-mark {
  display: inline-block; box-sizing: border-box;
  width: 0.56em; height: 0.56em;
  border: 0.095em solid currentColor; border-radius: 50%;
  position: relative; margin: 0 0.025em;
}
.o-mark::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 0.14em; height: 0.14em; border-radius: 50%;
  background: currentColor;
}
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 16px; color: var(--mid);
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--slate); }
.nav-links a.active { color: var(--slate); border-bottom-color: var(--slate); }

/* ---------- buttons ---------- */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--slate);
  padding: 13px 24px;
  font-family: var(--sans); font-size: 16px; color: var(--slate);
  background: transparent; cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-outline:hover { background: var(--slate); color: var(--white); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mid);
}
.hero-h {
  font-weight: 500;
  font-size: clamp(56px, 8.2vw, 122px);
  line-height: 1.04; letter-spacing: -0.025em;
  max-width: 1160px;
}
.section-h {
  font-weight: 500; font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.12; letter-spacing: -0.02em;
}
.body-l { font-size: 19px; line-height: 1.55; color: var(--mid); }
.statement {
  font-weight: 500; font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.22; letter-spacing: -0.015em;
}

/* ---------- layout ---------- */
.pad { padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: 110px var(--gutter); }

/* ---------- image blocks ---------- */
.img-block {
  position: relative;
  background-color: #0B0C0D;
  background-size: cover;
  background-position: center;
  image-rendering: pixelated;
  overflow: hidden;
}
.img-block::after {
  content: ''; position: absolute; inset: 0;
  background: var(--tint); mix-blend-mode: color; pointer-events: none;
}
.img-label-row {
  position: absolute; left: 32px; bottom: 26px; right: 32px;
  display: flex; gap: 28px; z-index: 1;
}
.img-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.img-label.dim { color: rgba(255,255,255,0.35); }

/* ---------- index rows ---------- */
.index { border-top: 1px solid var(--slate); }
.index-row {
  display: grid; grid-template-columns: 140px 1fr minmax(320px, 520px);
  align-items: start; padding: 34px 0;
  border-bottom: 1px solid var(--rule);
}
.index-num { font-family: var(--mono); font-size: 14px; letter-spacing: 0.08em; color: var(--mid); padding-top: 8px; }
.index-title { font-weight: 500; font-size: clamp(30px, 3.2vw, 46px); letter-spacing: -0.015em; line-height: 1; }
.index-desc { font-size: 18px; line-height: 1.55; color: var(--mid); }
a.index-row { transition: background 0.2s; }
a.index-row:hover { background: rgba(30, 34, 39, 0.025); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.stat { border-top: 1px solid var(--slate); padding-top: 26px; }
.stat-v { font-weight: 500; font-size: clamp(48px, 5vw, 76px); letter-spacing: -0.025em; line-height: 1; }
.stat-l { margin-top: 16px; font-size: 16px; line-height: 1.55; color: var(--mid); max-width: 320px; }

/* ---------- list rows (insights, features) ---------- */
.rows { border-top: 1px solid var(--slate); }
.row {
  display: grid; grid-template-columns: 220px 1fr 140px;
  align-items: center; padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.row-date { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--mid); }
.row-title { font-size: 18px; }
.row-cta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); text-align: right; }

.feature-row {
  display: grid; grid-template-columns: 230px 1fr;
  gap: 32px; padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.feature-name { font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); padding-top: 3px; }
.feature-desc { font-size: 17px; line-height: 1.55; color: var(--mid); }

/* ---------- forms ---------- */
.field { display: grid; gap: 10px; padding: 26px 0; border-bottom: 1px solid var(--rule); }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }
.field input, .field textarea {
  border: none; outline: none; background: transparent;
  font-family: var(--sans); font-size: 20px; color: var(--slate);
  padding: 0; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(91, 97, 104, 0.45); }
.field input[type="file"] { font-family: var(--mono); font-size: 13px; color: var(--mid); padding: 6px 0; cursor: pointer; }
.field input[type="file"]::file-selector-button {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate); background: transparent; border: 1px solid var(--slate);
  padding: 8px 14px; margin-inline-end: 14px; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.field input[type="file"]::file-selector-button:hover { background: var(--slate); color: var(--white); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--rule); padding: 64px var(--gutter) 40px; }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 72px; flex-wrap: wrap; gap: 24px; }
.footer-links { display: flex; gap: 56px; }
.footer-links a, .footer-meta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mid);
}
.footer-links a:hover { color: var(--slate); }
.footer-wordmark {
  font-weight: 600; font-size: clamp(120px, 17vw, 260px);
  line-height: 0.9; letter-spacing: -0.03em;
  color: var(--ghost); text-align: center;
  user-select: none;
}
.footer-wordmark .o-mark {
  width: 0.66em; height: 0.66em;
  border-width: 0.1em; margin: 0 0.03em;
}
.footer-wordmark .o-mark::after { width: 0.16em; height: 0.16em; }
html[data-wm="outline"] .footer-wordmark {
  color: transparent; -webkit-text-stroke: 1.5px #C7CBCE;
}
.footer-bottom { display: flex; justify-content: space-between; margin-top: 48px; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(91, 97, 104, 0.7); }

/* ---------- menu button ---------- */
.menu-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: none; cursor: pointer; padding: 8px 0;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate);
}
.menu-lines { display: inline-flex; flex-direction: column; gap: 5px; width: 22px; }
.menu-lines i { display: block; height: 1.5px; background: var(--slate); transition: transform 0.3s var(--ease); }
.menu-btn:hover .menu-lines i:first-child { transform: translateY(-1.5px); }
.menu-btn:hover .menu-lines i:last-child { transform: translateY(1.5px); }

/* ---------- fullscreen menu ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: var(--white); color: var(--slate);
  display: flex; flex-direction: column;
  overflow-y: auto;
  visibility: hidden; opacity: 0;
  transition: opacity 0.4s var(--ease), visibility 0s linear 0.4s;
}
.menu-overlay.open {
  visibility: visible; opacity: 1;
  transition: opacity 0.4s var(--ease);
}
body.menu-open { overflow: hidden; }

.menu-top { display: flex; justify-content: space-between; align-items: center; padding: 30px var(--gutter); }
.menu-close {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: none; cursor: pointer; padding: 8px 0;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate);
}
.menu-close .x { font-size: 18px; line-height: 1; font-family: var(--sans); transition: transform 0.3s var(--ease); display: inline-block; }
.menu-close:hover .x { transform: rotate(90deg); }

.menu-grid {
  flex: 1;
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  gap: 80px;
  padding: 16px var(--gutter) 56px;
}
.menu-nav { display: flex; flex-direction: column; border-top: 1px solid var(--slate); padding-top: 30px; align-items: flex-start; }
.menu-link {
  display: flex; align-items: baseline; gap: 24px;
  font-weight: 500; font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em; line-height: 1.1; padding: 10px 0;
  transition: color 0.2s;
}
.menu-link .menu-num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; color: var(--mid); font-weight: 400; }
.menu-link:hover { color: var(--mid); }
.menu-link.active .menu-t { border-bottom: 2px solid var(--slate); }
.menu-sub {
  display: flex; align-items: baseline; gap: 14px;
  font-weight: 500; font-size: clamp(20px, 2vw, 27px); letter-spacing: -0.01em;
  color: var(--mid); padding: 7px 0 7px 46px;
  transition: color 0.2s;
}
.menu-sub::before { content: '\21B3'; font-family: var(--mono); font-size: 0.8em; }
.menu-sub:hover { color: var(--slate); }
.ms-desc {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--mid); font-weight: 400;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
[dir="rtl"] .ms-desc { transform: translateX(8px); font-family: 'Noto Kufi Arabic', 'IBM Plex Mono', monospace; letter-spacing: 0; }
.menu-sub:hover .ms-desc, .menu-sub:focus-visible .ms-desc { opacity: 1; transform: none; }
@media (hover: none), (max-width: 900px) {
  .ms-desc { opacity: 1; transform: none; }
}

.menu-side { border-top: 1px solid var(--slate); padding-top: 30px; display: flex; flex-direction: column; gap: 56px; align-content: start; }
.menu-side .body-l { font-size: 17px; }
.menu-row { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.menu-row .row-title { font-size: 16px; }

.menu-foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  border-top: 1px solid var(--rule);
  padding: 22px var(--gutter) 30px;
}
.menu-foot span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }

/* staggered items */
.menu-overlay .mi {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: 0s;
}
.menu-overlay.open .mi { opacity: 1; transform: none; transition-delay: var(--md, 0s); }

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ---------- cinematic hero ---------- */
.hero-cine {
  position: relative;
  height: calc(100vh - 130px); min-height: 560px;
  background-color: #0B0C0D;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg {
  position: absolute; inset: -7%;
  background-image: url('../assets/dither-mono.png');
  background-size: cover; background-position: center;
  image-rendering: pixelated;
  animation: heroDrift 44s linear infinite alternate;
}
@keyframes heroDrift {
  from { transform: translate3d(0, 0, 0) scale(1.02); }
  to   { transform: translate3d(-1.6%, 1.4%, 0) scale(1.09); }
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-tint { position: absolute; inset: 0; background: var(--tint); mix-blend-mode: color; pointer-events: none; }
.hero-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(5, 6, 7, 0.78) 0%, rgba(5, 6, 7, 0.28) 38%, rgba(5, 6, 7, 0.05) 62%, rgba(5, 6, 7, 0.3) 100%);
}
.hero-cine::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 4px);
}
.hero-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 120px; pointer-events: none; z-index: 2;
  background: linear-gradient(to bottom, transparent, rgba(228, 230, 232, 0.14) 70%, rgba(255, 255, 255, 0.5) 99%, transparent 100%);
  opacity: 0;
  animation: heroScan 2.4s var(--ease) 0.5s 1 forwards;
}
@keyframes heroScan {
  0%   { transform: translateY(-130px); opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(110vh); opacity: 0; }
}
.hero-cine-inner {
  position: relative; z-index: 3;
  padding: 0 40px 92px;
  display: grid;
}
.hero-copy { grid-area: 1 / 1; align-self: end; transition: opacity 1.1s var(--ease); }
.hero-copy:not(.active) { opacity: 0; pointer-events: none; }
.hero-cine-h { color: var(--white); max-width: 1160px; font-size: clamp(44px, 6.8vw, 104px); }
.hero-cine-inner .eyebrow { color: rgba(255, 255, 255, 0.95); text-shadow: 0 1px 10px rgba(5, 6, 7, 0.6); }
.hero-cine-inner .body-l { color: rgba(255, 255, 255, 0.88); text-shadow: 0 1px 10px rgba(5, 6, 7, 0.5); }
.hero-cine .img-label-row { z-index: 3; }

html[data-hero="classic"] .hero-cine-wrap { display: none; }
.hero-classic { display: none; }
html[data-hero="classic"] .hero-classic { display: block; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
  .hero-scan { display: none; }
}
html[data-motion="off"] .hero-bg { animation: none; transform: none; }
html[data-motion="off"] .hero-scan { display: none; }

/* ---------- article / prose ---------- */
.article-head { max-width: 880px; }
.article-h { font-weight: 500; font-size: clamp(38px, 4.6vw, 68px); line-height: 1.1; letter-spacing: -0.02em; }
.prose { max-width: 760px; }
.prose p { font-size: 19px; line-height: 1.7; color: var(--slate); margin: 0 0 28px; }
.prose h2 { font-weight: 500; font-size: 28px; letter-spacing: -0.01em; margin: 56px 0 20px; }
.prose .lede { font-size: 22px; line-height: 1.6; color: var(--mid); }
.prose blockquote { margin: 40px 0; padding: 4px 0 4px 28px; border-left: 1px solid var(--slate); font-size: 22px; line-height: 1.5; font-weight: 500; }
[dir="rtl"] .prose blockquote { padding: 4px 28px 4px 0; border-left: none; border-right: 1px solid var(--slate); }
.draft-tag {
  display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #8A6D1F; border: 1px solid #C9A93F; padding: 4px 10px;
}
.verify-tag {
  display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #8A6D1F; border: 1px solid #C9A93F; padding: 2px 8px;
  vertical-align: middle; margin-inline-start: 12px;
}

/* ---------- keyboard focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 3px;
}
.hero-cine a:focus-visible, .img-block a:focus-visible, .spot-btn:focus-visible {
  outline-color: #FFFFFF;
}
.lang-link {
  font-family: var(--mono); font-size: 15px; letter-spacing: 0.04em; color: var(--mid);
  padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.lang-link:hover { color: var(--slate); border-bottom-color: var(--slate); }
.footer-meta a { color: inherit; }
.footer-meta a:hover { color: var(--slate); }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--slate); }

/* ---------- form success ---------- */
.form-success { display: none; border-top: 1px solid var(--slate); padding-top: 26px; margin-top: 8px; }
.form-success.show { display: block; }
.form-success p { font-size: 18px; line-height: 1.6; color: var(--slate); }

/* ---------- RTL / Arabic ---------- */
[dir="rtl"] body,
[dir="rtl"] .nav-name, [dir="rtl"] .btn-outline, [dir="rtl"] .body-l,
[dir="rtl"] .index-title, [dir="rtl"] .index-desc, [dir="rtl"] .row-title,
[dir="rtl"] .feature-desc, [dir="rtl"] .stat-l, [dir="rtl"] .statement,
[dir="rtl"] .section-h, [dir="rtl"] .hero-h, [dir="rtl"] .article-h,
[dir="rtl"] .menu-link, [dir="rtl"] .menu-sub, [dir="rtl"] .prose p, [dir="rtl"] .field input, [dir="rtl"] .field textarea {
  font-family: 'Noto Kufi Arabic', 'Archivo', sans-serif;
  letter-spacing: 0;
}
[dir="rtl"] .hero-h { font-size: clamp(40px, 6.2vw, 92px); line-height: 1.3; }
[dir="rtl"] .hero-cine-h { font-size: clamp(36px, 5.4vw, 80px); }
[dir="rtl"] .section-h { line-height: 1.35; }
[dir="rtl"] .statement { line-height: 1.45; }
[dir="rtl"] .index-title { line-height: 1.3; font-size: clamp(26px, 2.8vw, 40px); }
[dir="rtl"] .hl > span { padding-bottom: 0.18em; margin-bottom: -0.18em; }
[dir="rtl"] .eyebrow, [dir="rtl"] .feature-name, [dir="rtl"] .field label, [dir="rtl"] .img-label, [dir="rtl"] .menu-foot span, [dir="rtl"] .footer-links a, [dir="rtl"] .footer-meta, [dir="rtl"] .footer-bottom span {
  font-family: 'Noto Kufi Arabic', 'IBM Plex Mono', monospace; letter-spacing: 0;
}
[dir="rtl"] .row-cta { text-align: left; }
[dir="rtl"] .footer-wordmark { letter-spacing: 0; }
[dir="rtl"] .menu-sub::before { content: '\21B2'; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  :root { --gutter: 28px; }
  .section { padding: 72px var(--gutter); }
  .split { grid-template-columns: 1fr !important; gap: 48px !important; }
  .index-row { grid-template-columns: 90px 1fr; row-gap: 10px; }
  .index-desc { grid-column: 1 / -1; }
  .stats { grid-template-columns: 1fr; gap: 36px; }
  .row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .row-cta { text-align: left; }
  [dir="rtl"] .row-cta { text-align: right; }
  .feature-row { grid-template-columns: 1fr; gap: 10px; }
  .footer-links { gap: 24px; flex-wrap: wrap; }
  .hero-cine { height: 76vh; min-height: 520px; }
  .hero-cine-inner { padding: 0 24px 80px; }
  .menu-sub { padding-left: 30px; }
  [dir="rtl"] .menu-sub { padding-left: 0; padding-right: 30px; }
}
@media (max-width: 600px) {
  .nav { padding: 20px var(--gutter); }
  .nav .btn-outline { padding: 10px 14px; font-size: 14px; }
  .hero-h { font-size: clamp(40px, 11vw, 56px); }
  .footer-wordmark { font-size: clamp(72px, 18vw, 120px); }
}

/* ---------- product cards ---------- */
.product-card {
  margin: 0; border: 1px solid var(--rule);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 32px; padding: 48px 32px 28px;
}
.product-card img { max-width: 100%; max-height: 340px; object-fit: contain; }
.product-card figcaption { text-align: center; }

/* ---------- video in image blocks ---------- */
.img-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
html[data-motion="off"] .hero-video, html[data-motion="off"] .img-video { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  .hero-video, .img-video { display: none !important; }
}

/* ---------- spotlight section ---------- */
.spot-inner {
  position: absolute; top: 52px; left: 40px; right: 40px; z-index: 2;
}
.spot-inner .eyebrow { color: rgba(255, 255, 255, 0.95); text-shadow: 0 1px 10px rgba(5, 6, 7, 0.6); }
.spot-h { color: #FFFFFF; max-width: 620px; margin-top: 18px; text-shadow: 0 1px 14px rgba(5, 6, 7, 0.55); }
.spot-p { color: rgba(255, 255, 255, 0.88); max-width: 460px; margin-top: 20px; text-shadow: 0 1px 10px rgba(5, 6, 7, 0.5); }
.spot-btn {
  display: inline-block; margin-top: 36px;
  border-color: #FFFFFF; color: #FFFFFF;
}
.spot-btn:hover { background: #FFFFFF; color: var(--slate); }

/* ---------- sectors ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 48px; }
.sector { border-top: 1px solid var(--slate); padding: 20px 0 44px; display: grid; gap: 12px; align-content: start; }
.sector-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--mid); }
.sector-name { font-weight: 500; font-size: 22px; letter-spacing: -0.01em; line-height: 1.25; }
[dir="rtl"] .sector-name { font-family: 'Noto Kufi Arabic', 'Archivo', sans-serif; letter-spacing: 0; }
@media (max-width: 1000px) { .sector-grid { grid-template-columns: repeat(2, 1fr); gap: 0 28px; } .sector { padding-bottom: 32px; } }
@media (max-width: 600px) { .sector-grid { grid-template-columns: 1fr; } }

/* ---------- product showcase panel ---------- */
.showcase { background: #15181B; color: #E4E6E8; position: relative; overflow: hidden; padding: 52px 48px 0; }
.showcase .eyebrow { color: rgba(228, 230, 232, 0.55); }
.showcase-head { display: flex; justify-content: space-between; align-items: baseline; gap: 32px; flex-wrap: wrap; margin-bottom: 52px; }
.showcase-title { font-weight: 500; font-size: clamp(22px, 2.1vw, 30px); letter-spacing: -0.01em; color: #FFFFFF; }
.showcase-visual { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: stretch; margin-bottom: 56px; }
.showcase-fig { margin: 0; display: grid; grid-template-rows: 1fr auto; gap: 16px; }
.showcase-fig img { width: 100%; height: 340px; object-fit: contain; background: #15181B; border: 1px solid rgba(228, 230, 232, 0.14); }
.showcase-fig figcaption { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(228, 230, 232, 0.55); }
.showcase-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; border-top: 1px solid rgba(228, 230, 232, 0.18); padding: 26px 0 10px; }
.showcase-specs > div { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase; line-height: 1.8; color: rgba(228, 230, 232, 0.6); }
.showcase-specs b { color: #FFFFFF; font-weight: 500; }
.showcase-wm-clip { overflow: hidden; margin: 16px -48px 0; }
.showcase-wm {
  font-weight: 600; font-size: clamp(56px, 9.6vw, 158px);
  line-height: 0.86; letter-spacing: -0.03em;
  color: #FFFFFF; text-align: center; white-space: nowrap;
  transform: translateY(14%); opacity: 0.92;
}
[dir="rtl"] .showcase-specs > div { font-family: 'Noto Kufi Arabic', 'IBM Plex Mono', monospace; letter-spacing: 0; font-size: 12.5px; }
@media (max-width: 1000px) {
  .showcase { padding: 36px 24px 0; }
  .showcase-visual { grid-template-columns: 1fr; }
  .showcase-fig img { height: 260px; }
  .showcase-specs { grid-template-columns: 1fr; gap: 22px; }
  .showcase-wm-clip { margin: 16px -24px 0; }
}

/* ---------- spotlight slider ---------- */
.spot-slider { padding: 0; }
.spot-slider.ui .spot-slide::before { display: none; }
.spot-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.spot-slide.active { opacity: 1; pointer-events: auto; }
.spot-slide::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(5, 6, 7, 0.45) 0%, rgba(5, 6, 7, 0.08) 48%, rgba(5, 6, 7, 0.35) 100%);
}
.spot-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  inset-inline-end: 28px; z-index: 4;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(5, 6, 7, 0.3); color: #FFFFFF;
  font-family: var(--sans); font-size: 22px; line-height: 1; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.spot-next:hover { background: #FFFFFF; color: var(--slate); border-color: #FFFFFF; }
.spot-count {
  position: absolute; top: 30px; inset-inline-end: 32px; z-index: 4;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 600px) { .spot-next { width: 48px; height: 48px; inset-inline-end: 16px; } }

/* ---------- hero scenes (crossfade reel) ---------- */
.hero-scene {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.8s var(--ease);
}
.hero-scene.active { opacity: 1; }
.hero-scene-img {
  background-size: cover; background-position: center;
  animation: heroDrift 44s linear infinite alternate;
}
html[data-motion="off"] .hero-scene-img { animation: none; transform: none; }
@media (prefers-reduced-motion: reduce) { .hero-scene-img { animation: none; transform: none; } }

/* ---------- exploded diagram callouts ---------- */
.xp-stage { position: relative; width: fit-content; margin: 0 auto; }
.xp-stage > img { display: block; animation: xpFloat 7s ease-in-out infinite alternate; }
@keyframes xpFloat { from { transform: translateY(-6px); } to { transform: translateY(6px); } }
html[data-motion="off"] .xp-stage > img { animation: none; transform: none; }
@media (prefers-reduced-motion: reduce) { .xp-stage > img { animation: none; transform: none; } }
.xp-callout {
  position: absolute; left: var(--x); top: var(--y);
  display: flex; align-items: center; gap: 0;
  transform: translateY(-50%);
}
.xp-callout[data-side="left"] { transform: translate(-100%, -50%); flex-direction: row-reverse; }
.xp-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  border: 1.5px solid rgba(228, 230, 232, 0.9); box-sizing: border-box;
  opacity: 0; transition: opacity 0.4s var(--ease); transition-delay: var(--d, 0s);
}
.xp-line {
  height: 1px; width: 0; flex: none;
  background: rgba(228, 230, 232, 0.4);
  transition: width 0.7s var(--ease); transition-delay: calc(var(--d, 0s) + 0.25s);
}
.xp-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(228, 230, 232, 0.7);
  white-space: nowrap; padding: 0 10px;
  opacity: 0; transition: opacity 0.5s var(--ease); transition-delay: calc(var(--d, 0s) + 0.75s);
}
[dir="rtl"] .xp-label { font-family: 'Noto Kufi Arabic', 'IBM Plex Mono', monospace; letter-spacing: 0; }
.xp-callout.on .xp-dot { opacity: 1; }
.xp-callout.on .xp-line { width: 92px; }
.xp-callout.on .xp-label { opacity: 1; }
@media (max-width: 900px) { .xp-callout { display: none; } }

/* ---------- living dot ---------- */
.o-mark::after { animation: oPulse 3.2s ease-in-out infinite; }
@keyframes oPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
html[data-motion="off"] .o-mark::after { animation: none; opacity: 1; }

/* ---------- mono ticker ---------- */
.ticker { overflow: hidden; border-top: 1px solid var(--rule); padding: 15px 0; }
.ticker-track { display: flex; width: max-content; direction: ltr; animation: tickerMove 55s linear infinite; }
.ticker-track span {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid); white-space: nowrap;
}
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }
html[data-motion="off"] .ticker-track { animation: none; }

/* ---------- index row hover choreography ---------- */
a.index-row { position: relative; padding-inline-end: 56px; }
a.index-row .index-num, a.index-row .index-title { transition: color 0.25s var(--ease), transform 0.35s var(--ease); }
a.index-row:hover .index-num { color: var(--slate); }
a.index-row:hover .index-title { transform: translateX(8px); }
[dir="rtl"] a.index-row:hover .index-title { transform: translateX(-8px); }
a.index-row::after {
  content: '\2192'; position: absolute; inset-inline-end: 12px; top: 50%;
  transform: translateY(-50%) translateX(-12px);
  opacity: 0; font-size: 28px; color: var(--slate);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
}
[dir="rtl"] a.index-row::after { content: '\2190'; transform: translateY(-50%) translateX(12px); }
a.index-row:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- reveal animations ---------- */
.rv {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.rv.on { opacity: 1; transform: none; }

.hl { display: block; overflow: hidden; }
.hl > span {
  display: block; transform: translateY(115%);
  transition: transform 1.05s var(--ease);
  transition-delay: var(--d, 0s);
}
.hl.on > span { transform: none; }

.wm-clip { overflow: hidden; }
.wm-clip .footer-wordmark {
  transform: translateY(34%); opacity: 0.4;
  transition: transform 1.2s var(--ease), opacity 1.2s var(--ease);
}
.wm-clip.on .footer-wordmark { transform: none; opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .rv, .hl > span, .wm-clip .footer-wordmark, .menu-overlay .mi {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .o-mark::after { animation: none; opacity: 1; }
  .ticker-track { animation: none; }
}
html[data-motion="off"] .rv, html[data-motion="off"] .hl > span, html[data-motion="off"] .wm-clip .footer-wordmark, html[data-motion="off"] .menu-overlay .mi {
  opacity: 1 !important; transform: none !important; transition: none !important;
}
