/* WP-scoped Factory CSS */
.fct-page.portal,
.portal.fct-page {
  --lime: #B1EB1B;
  --font-display: BDO Grotesk, sans-serif;
  --font-body: BDO Grotesk, sans-serif;
}
/* ==========================================================================
   Nova Design System — Colors & Type
   Dark-mode brand, lime-on-black. BDO Grotesk display, BDO Grotesk body.
   ========================================================================== */ /* ---------- Fonts (Google Fonts — matches Figma exactly) ---------- */

@import url("https://fonts.googleapis.com/css2?family=BDO Grotesk:wght@400;500;600;700;800;900&family=BDO Grotesk:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  /* ==============================
     COLORS — Brand
     ============================== */
  --nova-lime: #B1EB1B; /* Primary brand — CTAs, accents, hero motif */
  --nova-lime-alt: #B1EB1B; /* Secondary lime — subheadings / highlights on dark */
  --nova-lime-deep: #B1EB1B; /* Deep lime — alternate fill on tile */
  --nova-lime-soft: #B1EB1B; /* Soft lime — links, chip borders */
  --nova-lime-ink: #337065; /* Text color used ON top of lime fills */
  --nova-lime-ink-2: #337065; /* Alt ink on lime (lighter) */

  /* ==============================
     COLORS — Neutrals (dark)
     ============================== */
  --nova-black: #0B241E;
  --nova-ink-0: #0B241E; /* Top nav / deepest surface */
  --nova-ink-1: #143C30; /* Body on white */
  --nova-ink-2: #143C30; /* Section band */
  --nova-ink-3: #143C30; /* Card dark */
  --nova-ink-4: #143C30; /* Raised card / browser chrome bg */
  --nova-ink-5: #1A5648; /* Browser chrome */
  --nova-ink-6: #1A5648; /* Content placeholder */
  --nova-gray-700: #4D8A81; /* Border on dark */
  --nova-gray-500: #767575; /* Muted text on dark / body meta */
  --nova-gray-400: #adaaaa; /* Lower-contrast body */
  --nova-gray-300: #b3b3b3; /* Social icons */
  --nova-gray-200: #EAF4F5; /* Step numerals */

  /* ==============================
     COLORS — Neutrals (light)
     ============================== */
  --nova-paper: #fafafa; /* Alternating light band */
  --nova-paper-2: #F1F0EE;
  --nova-paper-3: #F1F0EE;
  --nova-line: #EAF4F5; /* Light border */
  --nova-white: #FFFFFF;

  /* ==============================
     SEMANTIC — role tokens
     ============================== */
  /* Backgrounds */
  --bg-canvas: var(--nova-black);
  --bg-dark-band: var(--nova-black);
  --bg-light-band: var(--nova-paper);
  --bg-card-dark: var(--nova-ink-4);
  --bg-card-light: var(--nova-white);
  --bg-nav: rgba(0,60,49,0.6); /* blurred top nav */
  --bg-accent: var(--nova-lime);
  --bg-accent-deep: var(--nova-lime-deep);

  /* Foregrounds */
  --fg-on-dark: #FFFFFF;
  --fg-on-dark-muted: var(--nova-gray-500);
  --fg-on-dark-dim: var(--nova-gray-400);
  --fg-on-light: var(--nova-ink-1);
  --fg-on-light-muted: var(--nova-gray-500);
  --fg-on-accent: var(--nova-lime-ink);
  --fg-accent: var(--nova-lime-alt); /* lime text on dark */
  --fg-link: var(--nova-lime-soft);

  /* Borders */
  --border-dark: rgba(255, 255, 255, 0.05);
  --border-dark-2: rgba(0,60,49,0.15);
  --border-light: rgba(0,60,49,0.1);
  --border-accent: var(--nova-lime-alt);

  /* Shadows */
  --shadow-card: 0 9px 11px -7px rgba(0,60,49,0.1),
    0 22px 28px -6px rgba(0,60,49,0.1);
  --shadow-card-dark: 0 28px 55px -13px rgba(0,60,49,0.25);
  --shadow-glow-lime: 0 9px 11px -7px rgba(190,234,77,0.2),
    0 22px 28px -6px rgba(190,234,77,0.2);

  /* ==============================
     TYPOGRAPHY — font families
     ============================== */
  --font-display: "BDO Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "BDO Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "BDO Grotesk", "Liberation Mono", ui-monospace, monospace;

  /* ==============================
     TYPOGRAPHY — size scale (px)
     ============================== */
  --fs-eyebrow: 12px; /* tracked, uppercase */
  --fs-micro: 10px;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 30px;
  --fs-3xl: 36px;
  --fs-display: 48px;
  --fs-hero: 56px; /* Big section headers — BDO Grotesk Bold */
  --fs-monolith: 120px; /* Watermark / brand word */

  /* ==============================
     SPACING (8px base)
     ============================== */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;
  --s-50: 200px; /* full section vertical rhythm */

  /* ==============================
     RADII — Nova is NOT rounded. Hard edges.
     Only chip/pill elements and avatars use radius.
     ============================== */
  --r-none: 0;
  --r-xs: 2px;
  --r-sm: 8px; /* search pill in browser chrome */
  --r-pill: 999px;

  /* ==============================
     LAYOUT
     ============================== */
  --page-max: 1920px;
  --content-max: 1280px;
  --section-pad-x: 320px; /* 1920 design: 320px side gutters */
} /* ==========================================================================
   SEMANTIC TYPE CLASSES
   ========================================================================== */
.portal .nova-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  line-height: 16px;
  letter-spacing: 0.2em;
  color: var(--fg-accent);
  text-transform: none; /* Figma uses title case, tracked */
}
.portal .nova-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-hero); /* 56 */
  line-height: 60px;
  letter-spacing: -0.024em;
  color: inherit;
  margin: 0;
}
.portal .nova-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-3xl); /* 36 */
  line-height: 40px;
  letter-spacing: -0.01em;
  margin: 0;
}
.portal .nova-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl); /* 24 */
  line-height: 32px;
  margin: 0;
}
.portal .nova-h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg); /* 20 */
  line-height: 28px;
  margin: 0;
}
.portal .nova-body-lg {
  font-family: var(--font-body);
  font-size: var(--fs-lg); /* 20 */
  line-height: 29px;
  color: var(--fg-on-light-muted);
  margin: 0;
}
.portal .nova-body {
  font-family: var(--font-body);
  font-size: var(--fs-md); /* 18 */
  line-height: 28px;
  color: var(--fg-on-light-muted);
  margin: 0;
}
.portal .nova-body-sm {
  font-family: var(--font-body);
  font-size: var(--fs-base); /* 16 */
  line-height: 24px;
  color: var(--fg-on-light-muted);
  margin: 0;
}
.portal .nova-meta {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 20px;
  color: var(--fg-on-dark-muted);
}
.portal .nova-mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: -0.05em;
}
.portal .nova-watermark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 385px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--nova-lime);
  opacity: 0.07;
} /* ==========================================================================
   CORE PRIMITIVES (reused across kits & slides)
   ========================================================================== */
.portal .nova-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 32px;
  background: var(--nova-lime);
  color: var(--nova-lime-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: 28px;
  letter-spacing: -0.05em;
  border: 0;
  border-radius: 0; /* SQUARE */
  cursor: pointer;
  text-decoration: none;
  transition: background 160ms ease, transform 120ms ease;
}
.portal .nova-btn-primary:hover {
  background: var(--nova-lime-deep);
}
.portal .nova-btn-primary:active {
  transform: translateY(1px);
}
.portal .nova-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: transparent;
  color: var(--fg-on-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: 28px;
  letter-spacing: -0.05em;
  border: 1px solid var(--nova-gray-500);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}
.portal .nova-btn-ghost:hover {
  border-color: var(--nova-lime);
  color: var(--nova-lime);
}
.portal .nova-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--nova-black);
  color: var(--nova-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-base);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
}
.portal .nova-nav-chip {
  display: inline-flex;
  align-items: center;
  padding: 0 0 4px 0;
  border: 1px solid var(--nova-lime-alt);
  color: var(--nova-lime-alt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  line-height: 20px;
  letter-spacing: -0.025em;
  background: transparent;
  text-decoration: none;
}
.portal .nova-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-base);
  line-height: 24px;
  color: currentColor;
  text-decoration: none;
}
.portal .nova-link-arrow::after {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("icon-arrow.svg") center/contain no-repeat;
  mask: url("icon-arrow.svg") center/contain no-repeat;
}
.portal * {
  box-sizing: border-box;
}
.portal,
.portal {
  margin: 0;
  padding: 0;
}
.portal {
  background: #0B241E;
}
.portal img {
  display: block;
  max-width: 100%;
}
.portal a {
  color: inherit;
  text-decoration: none;
}
.portal button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
.portal ::selection {
  background: var(--nova-lime);
  color: var(--nova-lime-ink);
}
.portal {
  /* bright surfaces (neutral, no green tint) */
  --paper: #F1F0EE;
  --paper-2: #FFFFFF;
  --paper-3: #F1F0EE;
  --line-l: #EAF4F5;
  --line-l2: #EAF4F5;
  /* near-black bands (Nova) */
  --dk: #0B241E;
  --dk-2: #0B241E;
  --dk-card: #143C30;
  --dk-line: rgba(255, 255, 255, 0.09);
  --dk-line-2: rgba(255, 255, 255, 0.16);
  /* accent, lime on dark, ink on light */
  --grn: var(--nova-lime);
  --grn-deep: #143C30;
  --grn-bright: var(--nova-lime);
  --grn-soft: #F1F0EE;
  /* brand */
  --lime: var(--nova-lime);
  --lime-ink: var(--nova-lime-ink);
  /* ink (neutral) */
  --ink: #0B241E;
  --ink-soft: #4D8A81;
  --ink-dim: #74766f;
  --on-dk: #F1F0EE;
  --on-dk-soft: #a6a8a2;
  --on-dk-dim: #76786f;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  position: relative;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
.portal[dir="rtl"] {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}
.portal h1,
.portal h2,
.portal h3,
.portal h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.025em;
}
.portal[dir="rtl"] h1,
.portal[dir="rtl"] h2,
.portal[dir="rtl"] h3,
.portal[dir="rtl"] h4 {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  letter-spacing: 0;
}
.portal .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 760px) {
  .portal .wrap {
    padding: 0 22px;
  }
} /* ===== buttons (Nova) ===== */
.portal .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  padding: 15px 26px;
  border-radius: 0;
  transition: all 0.16s ease;
  cursor: pointer;
  white-space: nowrap;
}
.portal[dir="rtl"] .btn {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 700;
}
.portal .btn-primary {
  background: var(--lime);
  color: #003C31;
}
.portal .btn-primary:hover {
  background: var(--nova-lime-deep);
}
.portal .btn-primary:active {
  transform: translateY(1px);
}
.portal .btn-dark {
  background: var(--ink);
  color: #FFFFFF;
}
.portal .btn-dark:hover {
  background: #1A5648;
}
.portal .btn-ghost-l {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-l2);
}
.portal .btn-ghost-l:hover {
  border-color: var(--grn);
  color: var(--grn-deep);
}
.portal .btn-ghost-d {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid var(--dk-line-2);
}
.portal .btn-ghost-d:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.portal .btn-sm {
  padding: 11px 18px;
  font-size: 13px;
}
.portal .arr {
  display: inline-block;
  transition: transform 0.16s;
}
.portal[dir="rtl"] .arr {
  transform: scaleX(-1);
} /* ===== NAV (identical to Nova site, dark) ===== */
.portal .nav {
  position: sticky;
  top: 0;
  z-index: 120;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 48px;
  background: rgba(0,60,49,0.92);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.portal .nav-logo-link {
  display: inline-flex;
  align-items: center;
  margin-inline-end: 26px;
  transition: opacity 0.15s ease;
}
.portal .nav-logo-link:hover {
  opacity: 0.78;
}
.portal .nav-logo {
  height: 48px;
}
.portal .nav-items {
  display: flex;
  align-items: center;
  gap: 2px;
}
.portal .nav-item {
  position: relative;
}
.portal .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 16px;
  transition: color 0.15s ease;
}
.portal[dir="rtl"] .nav-trigger {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 700;
}
.portal .nav-trigger:hover,
.portal .nav-item[data-open="true"] .nav-trigger {
  color: #FFFFFF;
}
.portal .nav-trigger .chev {
  width: 8px;
  height: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}
.portal .nav-item[data-open="true"] .nav-trigger .chev {
  transform: rotate(225deg);
  margin-top: 2px;
}
.portal .nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: auto;
}
.portal .nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 9px 13px;
  transition: all 0.15s ease;
}
.portal[dir="rtl"] .nav-lang {
  font-family: "IBM Plex Sans Arabic";
}
.portal .nav-lang:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.portal .nav-lang .globe {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.4px solid currentColor;
  position: relative;
}
.portal .nav-lang .globe::before {
  content: "";
  position: absolute;
  inset: 1.6px 5px;
  border-inline: 1.4px solid currentColor;
  border-radius: 50%;
}
.portal .mega {
  position: absolute;
  top: calc(100% + 1px);
  inset-inline-start: 0;
  width: min(620px, 86vw);
  background: var(--nova-ink-1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px -24px rgba(0,17,14,0.55);
  padding: 14px;
  display: none;
  z-index: 130;
}
.portal .nav-item[data-open="true"] .mega {
  display: block;
  animation: megaIn 0.18s ease;
}
@keyframes megaIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.portal .mega-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 16px;
  transition: background 0.15s ease;
}
.portal .mega-row:hover {
  background: rgba(255, 255, 255, 0.04);
}
.portal .mega-ic {
  width: 42px;
  height: 42px;
  flex: none;
  background: var(--nova-ink-4);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nova-lime);
}
.portal .mega-ic svg {
  width: 20px;
  height: 20px;
}
.portal .mega-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: #FFFFFF;
  margin: 0 0 3px;
}
.portal .mega-for {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 18px;
  color: var(--nova-gray-500);
  margin: 0;
}
.portal[dir="rtl"] .mega-name,
.portal[dir="rtl"] .nav-trigger {
  font-family: "IBM Plex Sans Arabic";
}
.portal .mega-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.portal .mega-lead {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--nova-gray-500);
  padding: 6px 16px 12px;
}
.portal .suite-mega {
  width: min(760px, 90vw);
}
.portal .suite-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.portal .suite-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--nova-ink-3);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.portal .suite-card:hover {
  border-color: rgba(190,234,77,0.4);
  background: rgba(190,234,77,0.04);
}
.portal .suite-card[data-cur="true"] {
  border-color: rgba(190,234,77,0.5);
  background: rgba(190,234,77,0.06);
}
.portal .suite-card .sc-vis {
  height: 84px;
  background: var(--nova-ink-1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal .suite-card .sc-vis .ic {
  width: 30px;
  height: 30px;
  color: var(--nova-lime);
}
.portal .suite-card .sc-seq {
  position: absolute;
  top: 8px;
  inset-inline-start: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--nova-gray-500);
}
.portal .suite-card .sc-body {
  padding: 13px 14px 15px;
}
.portal .suite-card .sc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: #FFFFFF;
  margin: 0 0 4px;
}
.portal .suite-card .sc-tag {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
  color: var(--nova-gray-400);
  margin: 0;
}
.portal[dir="rtl"] .suite-card .sc-name {
  font-family: "IBM Plex Sans Arabic";
}
.portal .hamb {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-inline-start: auto;
}
.portal .hamb span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}
.portal .mdrawer {
  position: fixed;
  inset: 0;
  background: var(--nova-ink-1);
  z-index: 200;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  display: none;
}
.portal .mdrawer[data-open="true"] {
  display: flex;
}
.portal .mdrawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.portal .mdrawer-head .x {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
}
.portal .mdrawer-grp {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}
.portal .mdrawer-grp .gt {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--nova-gray-500);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.portal .mdrawer-grp a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  padding: 9px 0;
}
.portal[dir="rtl"] .mdrawer-grp a {
  font-family: "IBM Plex Sans Arabic";
}
.portal .mdrawer-foot {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media (max-width: 1000px) {
  .portal .nav-items {
    display: none;
  }
  .portal .nav .btn-sm {
    display: none;
  }
  .portal .hamb {
    display: flex;
  }
} /* ===== section scaffolding ===== */
.portal .sec {
  padding: 128px 0;
  position: relative;
}
@media (max-width: 760px) {
  .portal .sec {
    padding: 84px 0;
  }
}
.portal .band-dk {
  background: var(--dk);
  color: var(--on-dk);
}
.portal .eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}
.portal .band-dk .eyebrow {
  color: var(--lime);
}
.portal[dir="rtl"] .eyebrow {
  letter-spacing: 0.05em;
  font-family: "IBM Plex Sans Arabic";
  font-weight: 800;
}
.portal .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.portal .h-sec {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 20ch;
  text-transform: uppercase;
}
.portal .sub-sec {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-top: 20px;
}
.portal .band-dk .sub-sec {
  color: var(--on-dk-soft);
}
.portal[dir="rtl"] .sub-sec {
  line-height: 1.85;
} /* ===== reveal (scroll fade, same system as the main screen) ===== */
.portal [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.8, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 0.8, 0.3, 1);
}
.portal [data-reveal].in {
  opacity: 1;
  transform: none;
} /* ===== HERO (bright) ===== */
.portal .hero {
  background: radial-gradient(
      58% 55% at 84% 2%,
      rgba(190,234,77,0.13),
      transparent 58%
    ),
    radial-gradient(42% 42% at 3% 42%, rgba(190,234,77,0.12), transparent 64%),
    var(--dk);
  color: var(--on-dk);
  padding: 84px 0 92px;
  position: relative;
  overflow: hidden;
}
.portal .hero-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.portal .hero > .wrap {
  position: relative;
  z-index: 1;
}
.portal .fxpick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.portal .fxpick-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dk-dim);
  margin-inline-end: 4px;
}
.portal .fxpick-b {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--on-dk-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.portal .fxpick-b:hover {
  border-color: rgba(190,234,77,0.5);
  color: #FFFFFF;
}
.portal .fxpick-b[data-on="true"] {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--lime-ink);
  font-weight: 700;
}
.portal .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.portal .hero-copy {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portal .crumb {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--on-dk-dim);
  margin-bottom: 22px;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
}
.portal .crumb b {
  color: var(--lime);
  font-weight: 500;
}
.portal .pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-radius: 0;
  padding: 8px 17px 8px 13px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: #C7C6C4;
}
.portal[dir="rtl"] .pill {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 700;
}
.portal .pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grn-bright);
  position: relative;
  flex: none;
}
.portal .pill .dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--grn-bright);
  animation: ping 2.2s ease-out infinite;
}
@keyframes ping {
  0% {
    transform: scale(0.55);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.portal .hero h1 {
  font-size: clamp(32px, 4.7vw, 56px);
  line-height: 1.06;
  margin: 24px 0 0;
  max-width: none;
  color: #FFFFFF;
  text-transform: uppercase;
}
.portal .hero h1 .g {
  color: var(--lime);
}
.portal .hero-sub {
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--on-dk-soft);
  max-width: 58ch;
  margin: 22px auto 0;
}
.portal[dir="rtl"] .hero-sub {
  line-height: 1.9;
}
.portal .hero-sub b {
  color: #FFFFFF;
  font-weight: 600;
}
.portal .hero-cta {
  display: flex;
  gap: 13px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.portal .hstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 58px auto 0;
  width: 100%;
  max-width: 920px;
}
.portal .hstat {
  padding: 30px 18px;
  border: 1px solid var(--dk-line);
  text-align: left;
}
.portal .hstat:hover {
    border-color: rgba(190,234,77,0.4);
    background: rgba(190,234,77,0.045);
}
.portal .hstat:last-child {
  border-inline-end: 0;
}
@media (max-width: 560px) {
  .portal .hstats {
    grid-template-columns: 1fr 1fr;
  }
  .portal .hstat:nth-child(2) {
    border-inline-end: 0;
  }
  .portal .hstat:nth-child(1),
  .portal .hstat:nth-child(2) {
    border-bottom: 1px solid var(--dk-line);
  }
}
.portal .hstat .v {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: .18em;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 30px;
}
.portal .hstat .l {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -.01em;
    color: #FFFFFF;
    text-wrap: pretty;
    text-transform: none;
    margin-top: 0;
}
.portal[dir="rtl"] .hstat .l {
  letter-spacing: 0.02em;
}
.portal[dir="rtl"] .hstat .l {
  font-family: "IBM Plex Sans Arabic";
} /* hero mockup, Nova browser chrome */
.portal .mock {
  position: relative;
}
.portal .mock::before {
  content: "";
  position: absolute;
  inset: 8% -4% -10% -4%;
  z-index: 0;
  border-radius: 0;
  background: radial-gradient(
    closest-side,
    rgba(190,234,77,0.18),
    transparent 74%
  );
  filter: blur(26px);
}
.portal .browser {
  position: relative;
  z-index: 1;
  background: var(--nova-ink-3);
  border: 1px solid rgba(0,60,49,0.14);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 40px 90px -34px rgba(0,17,14,0.5),
    0 6px 16px -8px rgba(0,17,14,0.3);
}
.portal .browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 15px;
  background: #143C30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.portal .browser-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #337065;
}
.portal .browser-bar .url {
  margin-inline-start: 14px;
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
  padding: 6px 13px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #8A8987;
  display: flex;
  align-items: center;
  gap: 8px;
}
.portal .browser-bar .url::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.4px solid var(--grn-bright);
  border-radius: 50%;
  flex: none;
}
.portal .browser img {
  width: 100%;
  display: block;
}
.portal .mock-chip {
  position: absolute;
  z-index: 3;
  inset-inline-end: -18px;
  bottom: 48px;
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  box-shadow: 0 18px 40px -16px rgba(0,17,14,0.4);
  padding: 14px 18px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}
.portal .mock-chip .rfi-mini {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--grn-deep);
  line-height: 1;
  letter-spacing: -0.04em;
}
.portal .mock-chip .rfi-mini small {
  font-size: 0.5em;
  color: var(--ink-dim);
}
.portal .mock-chip .ml {
  font-size: 11px;
  color: var(--ink-dim);
  line-height: 1.3;
}
.portal .mock-chip .ml b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.portal[dir="rtl"] .mock-chip .ml b {
  font-family: "IBM Plex Sans Arabic";
}
.portal .illus {
  font-size: 11px;
  color: var(--on-dk-dim);
  letter-spacing: 0.03em;
  margin-top: 18px;
  font-style: italic;
}
.portal .band-dk .illus {
  color: var(--on-dk-dim);
} /* ===== GLASS DASHBOARD MOCKUP ===== */
.portal .gmock-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.portal .gmock-head .sub-sec {
  margin-inline: auto;
}
.portal .gmock {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.portal .gmock::before {
  content: "";
  position: absolute;
  inset: -8% -10% -16% -10%;
  z-index: 0;
  background: radial-gradient(
    closest-side,
    rgba(190,234,77,0.24),
    transparent 70%
  );
  filter: blur(70px);
  pointer-events: none;
}
.portal .gmock-glass {
  position: relative;
  z-index: 1;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    158deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.03) 46%,
    rgba(190,234,77,0.05)
  );
  backdrop-filter: blur(26px) saturate(1.3);
  -webkit-backdrop-filter: blur(26px) saturate(1.3);
  box-shadow: 0 48px 110px -34px rgba(0,17,14,0.55),
    0 1px 0 rgba(0,17,14,0.28) inset, 0 0 0 1px rgba(0,17,14,0.25);
}
.portal .gmock-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.16),
    transparent 30%
  );
  mix-blend-mode: overlay;
}
.portal .gmock-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px 15px;
}
.portal .gm-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex: none;
}
.portal .gm-dot.lime {
  background: var(--nova-lime);
  box-shadow: 0 0 10px 1px rgba(190,234,77,0.6);
}
.portal .gm-url {
  margin-inline-start: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--on-dk-soft);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 60%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.portal .gm-url::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.4px solid var(--nova-lime);
  border-radius: 50%;
  flex: none;
}
.portal .gmock-screen {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px -24px rgba(0,17,14,0.55);
  aspect-ratio: 3420/1560;
}
.portal .gmock-screen img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 760px) {
  .portal .gmock-glass {
    padding: 8px;
  }
  .portal .gm-url {
    max-width: 52%;
  }
} /* mockup inside hero: full width + pronounced fade up from bottom */
.portal .hero .gmock {
  width: 100%;
  max-width: 1160px;
  margin: 66px auto 0;
}
.portal .hero .gmock[data-reveal] {
  opacity: 0;
  transform: translateY(96px) scale(0.985);
  filter: blur(3px);
  transition: opacity 1s cubic-bezier(0.16, 0.8, 0.3, 1),
    transform 1.15s cubic-bezier(0.16, 0.9, 0.26, 1), filter 0.8s ease;
}
.portal .hero .gmock[data-reveal].in {
  opacity: 1;
  transform: none;
  filter: none;
} /* ===== HERO VIDEO (vertical, part of hero) ===== */
.portal .hvid {
  width: 100%;
  max-width: 1060px;
  margin: 64px auto 0;
}
.portal .hvid-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.portal .hvid-head .ln {
  width: 34px;
  height: 1px;
  background: var(--dk-line-2);
}
.portal .hvid-head .t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dk-soft);
}
.portal[dir="rtl"] .hvid-head .t {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 800;
  letter-spacing: 0.04em;
}
.portal .hvid-head .s {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--on-dk-dim);
  letter-spacing: 0.04em;
}
.portal .hero .illus {
  text-align: center;
}
.portal .video {
  position: relative;
  border: 1px solid var(--line-l);
  border-radius: 0;
  overflow: hidden;
  background: #0B241E;
  aspect-ratio: 16/7.4;
  box-shadow: 0 50px 100px -44px rgba(0,17,14,0.42);
  cursor: pointer;
}
.portal .video .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.52) saturate(1.05);
  transform: scale(1.02);
}
.portal .video.playing .poster {
  animation: kb 30s linear infinite alternate;
  filter: brightness(0.62) saturate(1.1);
}
@keyframes kb {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.14) translate(-3%, -4%);
  }
}
.portal .video .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,60,49,0.15),
    rgba(0,60,49,0.05) 35%,
    rgba(0,60,49,0.86)
  );
}
.portal .v-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity 0.4s;
}
.portal .v-play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px -8px rgba(190,234,77,0.5);
}
.portal .v-play svg {
  width: 30px;
  height: 30px;
  margin-inline-start: 3px;
}
.portal .video.playing .v-center {
  opacity: 0;
  pointer-events: none;
}
.portal .v-badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,60,49,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 7px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #FFFFFF;
}
.portal[dir="rtl"] .v-badge {
  letter-spacing: 0.04em;
  font-family: "IBM Plex Sans Arabic";
}
.portal .v-badge .rec {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grn-bright);
}
.portal .video.playing .v-badge .rec {
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  50% {
    opacity: 0.25;
  }
}
.portal .v-ctrls {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.portal .v-ctrls button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,60,49,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s;
}
.portal .v-ctrls button:hover {
  background: var(--lime);
  color: var(--lime-ink);
  border-color: var(--lime);
}
.portal .v-ctrls svg {
  width: 17px;
  height: 17px;
}
.portal .v-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 0 26px 22px;
}
.portal .v-cap {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.9vw, 22px);
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,17,14,0.55);
  min-height: 1.5em;
  transition: opacity 0.4s;
  max-width: 80%;
}
.portal[dir="rtl"] .v-cap {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 800;
}
.portal .v-prog {
  margin-top: 16px;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 0;
  overflow: hidden;
}
.portal .v-prog i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grn-bright);
}
.portal .video.playing .v-prog i {
  animation: prog 30s linear infinite;
}
@keyframes prog {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.portal .vmodal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.portal .vmodal[data-open="true"] {
  display: flex;
}
.portal .vmodal-back {
  position: absolute;
  inset: 0;
  background: rgba(0,60,49,0.9);
  backdrop-filter: blur(8px);
}
.portal .vmodal .video {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  cursor: default;
  animation: popin 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes popin {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.portal .vmodal-x {
  position: absolute;
  top: 20px;
  inset-inline-end: 24px;
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal .vmodal-x:hover {
  background: var(--lime);
  color: var(--lime-ink);
} /* ===== FUNNEL (dark), connected stepper + narrowing bar ===== */ /* ===== FUNNEL, scattered constellation with animated connectors ===== */
.portal .funnel {
  position: relative;
  min-height: 880px;
  margin-top: 46px;
}
@media (max-width: 980px) {
  .portal .funnel {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
  }
}
.portal .fn-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 980px) {
  .portal .fn-svg {
    display: none;
  }
}
.portal .fn-svg line {
  stroke: var(--lime);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  filter: drop-shadow(0 0 7px rgba(177,235,27, 0.55));
}
.portal .funnel.in .fn-svg line {
  animation: fnDraw 0.9s cubic-bezier(0.6, 0.05, 0.3, 1) forwards;
}
.portal .funnel.in .fn-svg line:nth-of-type(2) {
  animation-delay: 0.45s;
}
.portal .funnel.in .fn-svg line:nth-of-type(3) {
  animation-delay: 0.8s;
}
@keyframes fnDraw {
  to {
    stroke-dashoffset: 0;
  }
}
.portal .fstep {
  position: absolute;
  width: 30%;
  min-width: 330px;
  background: var(--dk-card);
  border: 1px solid var(--dk-line);
  border-radius: 0;
  padding: 30px 30px 32px;
  z-index: 1;
  box-shadow: 0 24px 60px -34px rgba(0,17,14,0.55);
}
.portal .fstep:nth-of-type(1) {
  left: 11%;
  top: 1%;
}
.portal .fstep:nth-of-type(2) {
  left: 62%;
  top: 24%;
}
.portal .fstep:nth-of-type(3) {
  left: 18%;
  top: 46%;
}
.portal .fstep:nth-of-type(4) {
  left: 58%;
  top: 66%;
}
@media (max-width: 980px) {
  .portal .fstep {
    position: static;
    width: auto;
    min-width: 0;
  }
  .portal .fstep:nth-of-type(n) {
    left: auto;
    top: auto;
  }
}
.portal .fstep .flabel {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  display: block;
}
.portal[dir="rtl"] .fstep .flabel {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 800;
  letter-spacing: 0.02em;
}
.portal .fstep[data-star="true"] {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px var(--lime), 0 24px 70px -30px rgba(190,234,77,0.4);
}
.portal .fstep h4 {
  font-size: 19px;
  color: #FFFFFF;
  margin: 0 0 11px;
  line-height: 1.22;
}
.portal .fstep[data-star="true"] h4 {
  color: var(--lime);
}
.portal .fstep p {
  font-size: 14px;
  line-height: 1.62;
  color: var(--on-dk-soft);
  margin: 0;
}
.portal[dir="rtl"] .fstep p {
  line-height: 1.85;
}
.portal .fstep .gate {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--lime);
  text-transform: uppercase;
}
.portal[dir="rtl"] .fstep .gate {
  letter-spacing: 0.03em;
  font-family: "IBM Plex Sans Arabic";
  font-weight: 800;
}
.portal .fstep .gate::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--lime);
  transform: rotate(45deg);
} /* ===== GRADES, configuration matrix ===== */
.portal .grades {
  margin-top: 96px;
  border: 1px solid var(--dk-line-2);
  padding: 46px;
  position: relative;
}
.portal .grades::before {
  content: "";
  position: absolute;
  top: 9px;
  inset-inline-start: 9px;
  width: 7px;
  height: 7px;
  background: var(--lime);
}
.portal .grades::after {
  content: "";
  position: absolute;
  bottom: 9px;
  inset-inline-start: 9px;
  width: 7px;
  height: 7px;
  background: var(--lime);
}
@media (max-width: 980px) {
  .portal .grades {
    margin-top: 60px;
  }
}
.portal .gr-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--dk-line);
}
@media (max-width: 760px) {
  .portal .gr-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.portal .gr-eye {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dk-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.portal .gr-eye .sq {
  width: 7px;
  height: 7px;
  background: var(--lime);
  flex: none;
}
.portal .gr-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.portal[dir="rtl"] .gr-title {
  font-family: "IBM Plex Sans Arabic";
}
.portal .gr-intro {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.65;
  color: var(--on-dk-soft);
  text-align: right;
  margin: 0;
  align-self: center;
}
.portal[dir="rtl"] .gr-intro {
  font-family: "IBM Plex Sans Arabic";
  text-align: left;
  line-height: 1.85;
}
@media (max-width: 760px) {
  .portal .gr-intro {
    text-align: left;
  }
}
.portal .gr-rows {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.portal .grow {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 30px;
  background: var(--dk-card);
  border: 1px solid var(--dk-line);
  padding: 28px 34px;
  transition: border-color 0.2s ease;
}
.portal .grow:hover {
  border-color: rgba(190,234,77,0.3);
}
@media (max-width: 760px) {
  .portal .grow {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
}
.portal .grow-rng {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 11px;
}
.portal .grow-name {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 21px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.portal[dir="rtl"] .grow-name {
  font-family: "IBM Plex Sans Arabic";
}
.portal .grow-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.portal .gchip {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  padding: 9px 15px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.portal[dir="rtl"] .gchip {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 600;
}
.portal .gchip[data-v="core"] {
  background: var(--lime);
  color: var(--lime-ink);
}
.portal .gchip[data-v="portal"] {
  background: transparent;
  border: 1px solid var(--lime);
  color: var(--lime);
}
.portal .gchip[data-v="muted"] {
  background: rgba(255, 255, 255, 0.03);
  color: var(--on-dk-dim);
  border: 1px solid var(--dk-line);
} /* ===== CLUSTERS (light), structured colored bento ===== */
.portal .cl-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 54px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .portal .cl-bento {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .portal .cl-bento {
    grid-template-columns: 1fr;
  }
}
.portal .ccard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-l);
  border-radius: 0;
  padding: 34px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.portal .ccard:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 48px -26px rgba(0,17,14,0.32);
}
.portal .cl-bento .ccard:nth-child(1) {
  grid-column: span 3;
}
.portal .cl-bento .ccard:nth-child(2) {
  grid-column: span 3;
}
.portal .cl-bento .ccard:nth-child(3) {
  grid-column: span 2;
}
.portal .cl-bento .ccard:nth-child(4) {
  grid-column: span 2;
}
.portal .cl-bento .ccard:nth-child(5) {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .portal .cl-bento .ccard:nth-child(n) {
    grid-column: auto;
  }
} /* themes */
.portal .ccard[data-theme="dark"] {
  background: var(--nova-ink-3);
  border-color: #1A5648;
  color: #FFFFFF;
}
.portal .ccard[data-theme="lime"] {
  background: var(--nova-lime);
  border-color: #B1EB1B;
}
.portal .ccard[data-theme="sage"] {
  background: var(--paper-2);
  border-color: var(--line-l);
}
.portal .ccard[data-theme="white"] {
  background: var(--paper-2);
  border-color: var(--line-l);
}
.portal .ccard[data-theme="mist"] {
  background: var(--paper-2);
  border-color: var(--line-l);
}
.portal .cc-focus {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grn-deep);
}
.portal .ccard[data-theme="dark"] .cc-focus {
  color: var(--lime);
}
.portal[dir="rtl"] .cc-focus {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0.02em;
}
.portal .ccard h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 12px 0 0;
  color: var(--ink);
}
.portal .ccard[data-theme="dark"] h4 {
  color: #FFFFFF;
}
.portal[dir="rtl"] .ccard h4 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .cpoints {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.portal .cl-bento .ccard:nth-child(1) .cpoints,
.portal .cl-bento .ccard:nth-child(2) .cpoints {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
@media (max-width: 560px) {
  .portal .cl-bento .ccard:nth-child(1) .cpoints,
  .portal .cl-bento .ccard:nth-child(2) .cpoints {
    grid-template-columns: 1fr;
  }
}
.portal .cpt {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.3;
}
.portal .ccard[data-theme="dark"] .cpt {
  color: rgba(255, 255, 255, 0.82);
}
.portal[dir="rtl"] .cpt {
  font-family: "IBM Plex Sans Arabic";
}
.portal .cpt-ic {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--grn-deep);
}
.portal .ccard[data-theme="dark"] .cpt-ic {
  color: var(--lime);
}
.portal .cpt-ic svg {
  width: 100%;
  height: 100%;
  display: block;
} /* ===== LEVELS (dark), ascending staircase ===== */
.portal .stair {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 56px;
  align-items: end;
}
@media (max-width: 900px) {
  .portal .stair {
    grid-template-columns: 1fr;
  }
}
.portal .lvl {
  background: var(--dk-card);
  border: 1px solid var(--dk-line);
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.portal .lvl .bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
  overflow: hidden;
}
.portal .lvl .bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--grn), var(--lime));
  transition: width 1s cubic-bezier(0.3, 0.8, 0.3, 1);
}
.portal .lvl .lp {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--lime);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portal .lvl .lp .pct {
  color: var(--on-dk-dim);
  font-size: 13px;
}
.portal[dir="rtl"] .lvl .lp {
  font-family: "IBM Plex Sans Arabic";
}
.portal .lvl h4 {
  font-size: 16px;
  color: #FFFFFF;
  margin: 14px 0 9px;
  line-height: 1.22;
}
.portal .lvl p {
  font-size: 13px;
  color: var(--on-dk-soft);
  line-height: 1.55;
  margin: 0;
}
.portal[dir="rtl"] .lvl p {
  line-height: 1.8;
}
@media (min-width: 901px) {
  .portal .stair .lvl:nth-child(1) {
    margin-bottom: 64px;
  }
  .portal .stair .lvl:nth-child(2) {
    margin-bottom: 48px;
  }
  .portal .stair .lvl:nth-child(3) {
    margin-bottom: 32px;
  }
  .portal .stair .lvl:nth-child(4) {
    margin-bottom: 16px;
  }
} /* ===== COMPASS (light), 2x2 quadrants + center hub ===== */
.portal .compass-wrap {
  position: relative;
  margin-top: 50px;
}
.portal .compass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 860px) {
  .portal .compass-grid {
    grid-template-columns: 1fr;
  }
}
.portal .quad {
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  padding: 36px;
  transition: 0.2s;
}
.portal .quad:hover {
  border-color: var(--grn);
  box-shadow: 0 24px 46px -24px rgba(0,17,14,0.26);
}
.portal .quad .ql {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.portal[dir="rtl"] .quad .ql {
  letter-spacing: 0.03em;
  font-family: "IBM Plex Sans Arabic";
  font-weight: 800;
}
.portal .quad h3 {
  font-size: 23px;
  color: var(--ink);
  margin: 13px 0 5px;
}
.portal .quad .theme {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.portal[dir="rtl"] .quad .theme {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 700;
}
.portal .quad p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 20px;
}
.portal[dir="rtl"] .quad p {
  line-height: 1.85;
}
.portal .quad .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.portal .quad .chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1;
  padding: 8px 13px;
  border-radius: 0;
  background: var(--paper-3);
  border: 1px solid var(--line-l2);
  color: var(--ink-soft);
  white-space: nowrap;
  transition: 0.15s;
}
.portal .quad:hover .chip {
  border-color: #c4d6bc;
}
.portal[dir="rtl"] .quad .chip {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 700;
}
.portal .compass-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px var(--paper), 0 18px 36px -14px rgba(0,17,14,0.5);
}
.portal .compass-hub svg {
  width: 42px;
  height: 42px;
  color: var(--lime);
}
@media (max-width: 860px) {
  .portal .compass-hub {
    display: none;
  }
}
.portal .misk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grn-soft);
  border: 1px solid rgba(190,234,77,0.3);
  padding: 11px 19px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--grn-deep);
  margin-top: 24px;
}
.portal[dir="rtl"] .misk {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 800;
}
.portal .misk svg {
  width: 16px;
  height: 16px;
} /* ===== REPORTS (dark), featured + grid ===== */
.portal .rep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
}
@media (max-width: 1000px) {
  .portal .rep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .portal .rep-grid {
    grid-template-columns: 1fr;
  }
}
.portal .rcard {
  background: var(--dk-card);
  border: 1px solid var(--dk-line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.portal .rcard:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}
.portal .rcard[data-hero="true"] {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(
    155deg,
    rgba(190,234,77,0.1),
    #143C30 56%
  );
  border-color: rgba(190,234,77,0.35);
  justify-content: space-between;
}
@media (max-width: 540px) {
  .portal .rcard[data-hero="true"] {
    grid-column: auto;
    grid-row: auto;
  }
}
.portal .rcard .ric {
  width: 46px;
  height: 46px;
  border: 1px solid var(--dk-line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 20px;
}
.portal .rcard[data-hero="true"] .ric {
  background: var(--lime);
  color: var(--lime-ink);
  border-color: var(--lime);
  width: 54px;
  height: 54px;
}
.portal .rcard .ric svg {
  width: 23px;
  height: 23px;
}
.portal .rcard[data-hero="true"] .ric svg {
  width: 27px;
  height: 27px;
}
.portal .rcard .rid {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime);
  letter-spacing: 0.1em;
}
.portal .rcard h4 {
  font-size: 17px;
  color: #FFFFFF;
  margin: 8px 0 11px;
  line-height: 1.22;
}
.portal .rcard[data-hero="true"] h4 {
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
}
.portal .rcard p {
  font-size: 13.5px;
  color: var(--on-dk-soft);
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}
.portal .rcard[data-hero="true"] p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 42ch;
}
.portal[dir="rtl"] .rcard p {
  line-height: 1.8;
}
.portal .rcard p .l100 {
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 800;
}
.portal .ruse {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  color: #C7C6C4;
  border-top: 1px solid var(--dk-line);
  padding-top: 15px;
}
.portal[dir="rtl"] .ruse {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 700;
}
.portal .ruse b {
  color: var(--lime);
  font-weight: 700;
} /* ===== ROLE FIT (signal), flat dark, radial gauge ===== */
.portal .rfi {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 820px) {
  .portal .rfi {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.portal .rfi h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  max-width: 15ch;
  text-transform: uppercase;
}
.portal .rfi p {
  font-size: 18px;
  color: var(--on-dk-soft);
  line-height: 1.6;
  margin: 28px 0 0;
  max-width: 46ch;
}
.portal[dir="rtl"] .rfi p {
  line-height: 1.9;
}
.portal .gauge {
  position: relative;
  width: min(380px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.portal .gauge svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.portal[dir="rtl"] .gauge svg {
  transform: rotate(-90deg) scaleY(-1);
}
.portal .gauge .g-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.portal .gauge .g-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 9vw, 108px);
  color: #FFFFFF;
  letter-spacing: -0.05em;
  line-height: 1;
}
.portal .gauge .g-meta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 12px;
}
.portal[dir="rtl"] .gauge .g-meta {
  letter-spacing: 0.03em;
  font-family: "IBM Plex Sans Arabic";
  font-weight: 800;
} /* ===== FINAL CTA (bright green gradient) ===== */
.portal .final {
  background: var(--dk);
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  text-align: center;
}
.portal .final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      56% 82% at 50% -12%,
      rgba(190,234,77,0.24),
      transparent 62%
    ),
    radial-gradient(
      40% 60% at 50% 112%,
      rgba(190,234,77,0.1),
      transparent 60%
    );
}
.portal .final-in {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 30px;
}
.portal .final h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.04;
  color: #FFFFFF;
  text-transform: uppercase;
} /* ===== GET A DEMO MODAL ===== */

@keyframes dmin {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.portal .dmodal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.portal .dmodal[data-open="true"] {
  display: flex;
}
.portal .dmodal-back {
  position: absolute;
  inset: 0;
  background: rgba(0,60,49,0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.portal .dmodal-box {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--nova-ink-1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 70px 140px -50px rgba(0,17,14,0.55);
  animation: dmin 0.26s cubic-bezier(0.2, 0.7, 0.2, 1);
  padding: 40px 40px 36px;
}
.portal .dmodal-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.portal .dmodal-close:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.portal .dmodal-hd h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  color: #FFFFFF;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.portal[dir="rtl"] .dmodal-hd h3 {
  font-family: "IBM Plex Sans Arabic";
  text-transform: none;
}
.portal .dmodal-lead {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-dk-soft);
  margin: 0 0 26px;
  max-width: 48ch;
}
.portal .dform2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.portal .dfield {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.portal .dfield-full {
  grid-column: 1 / -1;
}
.portal .dlabel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--on-dk-soft);
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.portal .dlabel em {
  font-style: normal;
  font-weight: 500;
  color: var(--on-dk-dim);
  font-size: 11.5px;
}
.portal .dform2 input,
.portal .dform2 select,
.portal .dform2 textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease;
}
.portal .dform2 textarea {
  resize: vertical;
  min-height: 74px;
}
.portal .dform2 input::placeholder,
.portal .dform2 textarea::placeholder {
  color: var(--on-dk-dim);
}
.portal .dform2 input:focus,
.portal .dform2 select:focus,
.portal .dform2 textarea:focus {
  border-color: var(--lime);
}
.portal .dform2 select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.portal .dform2 select option {
  background: var(--nova-ink-1);
  color: #FFFFFF;
}
.portal .dchips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.portal .dchip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--on-dk-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.portal .dchip:hover {
  border-color: rgba(190,234,77,0.5);
  color: #FFFFFF;
}
.portal .dchip[data-on="true"] {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--lime-ink);
}
.portal .dform2-submit {
  grid-column: 1 / -1;
  margin-top: 6px;
  justify-content: center;
}
.portal .dsuccess2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 10px 22px;
  gap: 14px;
}
.portal .dcheck2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lime);
  position: relative;
  flex: none;
}
.portal .dcheck2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 12px;
  height: 22px;
  border-right: 3px solid var(--lime-ink);
  border-bottom: 3px solid var(--lime-ink);
  transform: translate(-50%, -55%) rotate(45deg);
}
.portal .dsuccess2 h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
}
.portal .dsuccess2 p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--on-dk-soft);
  margin: 0;
  max-width: 38ch;
}
@media (max-width: 560px) {
  .portal .dform2 {
    grid-template-columns: 1fr;
  }
  .portal .dmodal-box {
    padding: 32px 22px 28px;
  }
}
.portal .finalband {
  max-width: 780px;
}
.portal .fb-pts {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.portal .fb-pts li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--on-dk-soft);
}
.portal .fb-pts .rck {
  flex: none;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(190,234,77,0.35);
  background: rgba(190,234,77,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nova-lime, #B1EB1B);
}
.portal .fb-pts .rck svg {
  width: 18px;
  height: 18px;
  display: block;
}
.portal .fb-cta {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.portal .final p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 22px auto 0;
  max-width: 52ch;
}
.portal[dir="rtl"] .final p {
  line-height: 1.9;
}
.portal .final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}
.portal .final .dl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 3px;
  transition: 0.15s;
}
.portal[dir="rtl"] .final .dl {
  font-family: "IBM Plex Sans Arabic";
}
.portal .final .dl:hover {
  color: var(--lime);
  border-color: var(--lime);
} /* ===== FOOTER (Nova site) ===== */
.portal .footer {
  background: var(--nova-black);
  padding: 110px 0 36px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.portal .footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(6, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .portal .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .portal .footer-brand {
    grid-column: 1/-1;
  }
}
.portal .footer-brand .logo {
  height: 30px;
  margin-bottom: 18px;
}
.portal .footer-brand p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--nova-gray-500);
  margin: 0 0 22px;
  max-width: 240px;
}
.portal[dir="rtl"] .footer-brand p {
  font-family: "IBM Plex Sans Arabic";
}
.portal .footer-soc {
  display: flex;
  gap: 12px;
}
.portal .footer-soc a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s;
}
.portal .footer-soc a:hover {
  border-color: var(--nova-lime);
}
.portal .footer-soc i {
  width: 17px;
  height: 17px;
  background: var(--nova-gray-300);
  display: block;
}
.portal .footer-soc a:hover i {
  background: var(--nova-lime);
}
.portal .footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
  margin: 0 0 16px;
}
.portal[dir="rtl"] .footer-col h4 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.portal .footer-col a,
.portal .footer-col li {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--nova-gray-500);
  line-height: 1.5;
}
.portal[dir="rtl"] .footer-col a,
.portal[dir="rtl"] .footer-col li {
  font-family: "IBM Plex Sans Arabic";
}
.portal .footer-col a:hover {
  color: var(--nova-lime);
}
.portal .footer-contact .addr {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--nova-gray-500);
}
.portal[dir="rtl"] .footer-contact .addr {
  font-family: "IBM Plex Sans Arabic";
}
.portal .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--nova-gray-500);
  position: relative;
  z-index: 2;
}
.portal[dir="rtl"] .footer-bottom {
  font-family: "IBM Plex Sans Arabic";
}
.portal .watermark {
  position: absolute;
  inset-inline: 0;
  bottom: -72px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 385px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--nova-lime);
  opacity: 0.06;
  pointer-events: none;
}
@media (max-width: 900px) {
  .portal .watermark {
    font-size: 150px;
    bottom: -30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal [data-reveal],
  .portal [data-reveal].in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .portal .video.playing .poster,
  .portal .video.playing .v-prog i,
  .portal .pill .dot::after {
    animation: none !important;
  }
} /* ===== FACTORY: hero horizontal ===== */
.portal .hero-top {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 54px;
  align-items: end;
}
@media (max-width: 900px) {
  .portal .hero-top {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
}
.portal .hero-lead h1 {
  text-align: start;
  margin: 24px 0 0;
  max-width: 18ch;
}
.portal .hero-aside {
  padding-bottom: 6px;
}
.portal .hero-top .hero-sub {
  margin: 0;
  max-width: 42ch;
  text-align: start;
}
.portal .hero-top .hero-cta {
  justify-content: flex-start;
  margin-top: 28px;
}
.portal .hvid {
  margin-top: 76px;
  max-width: none;
} /* ===== FACTORY: at a glance ===== */
.portal .gl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 54px;
  border: 1px solid var(--line-l);
}
@media (max-width: 680px) {
  .portal .gl-stats {
    grid-template-columns: 1fr 1fr;
  }
}
.portal .gl-stat {
  padding: 44px 32px;
  border-inline-end: 1px solid var(--line-l);
  position: relative;
  transition: background 0.2s ease;
}
.portal .gl-stat::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.portal .gl-stat:hover {
  background: #fff;
}
.portal .gl-stat:hover::before {
  transform: scaleX(1);
}
.portal .gl-stat:last-child {
  border-inline-end: 0;
}
@media (max-width: 680px) {
  .portal .gl-stat:nth-child(2n) {
    border-inline-end: 0;
  }
  .portal .gl-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-l);
  }
}
.portal .gl-stat .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 58px);
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1;
}
.portal .gl-stat .l {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.45;
  text-transform: uppercase;
}
.portal[dir="rtl"] .gl-stat .l {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
} /* ===== FACTORY strip + CTA ===== */
.portal .fct {
  margin-top: 50px;
  border: 1px solid var(--line-l2);
  background: linear-gradient(rgba(0,60,49,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,60,49,0.022) 1px, transparent 1px),
    var(--paper-2);
  background-size: 46px 46px, 46px 46px;
}
.portal .fct-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-l2);
}
@media (max-width: 680px) {
  .portal .fct-stats {
    grid-template-columns: 1fr 1fr;
  }
}
.portal .fct-stat {
  padding: 30px 34px;
  border-inline-end: 1px solid var(--line-l);
}
.portal .fct-stat:last-child {
  border-inline-end: 0;
}
@media (max-width: 680px) {
  .portal .fct-stat:nth-child(2n) {
    border-inline-end: 0;
  }
  .portal .fct-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-l);
  }
}
.portal .fct-stat .l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.portal[dir="rtl"] .fct-stat .l {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .fct-stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 46px);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 16px;
}
.portal .fct-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 34px;
}
@media (max-width: 680px) {
  .portal .fct-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.portal .fct-cta h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(21px, 2.6vw, 29px);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.portal[dir="rtl"] .fct-cta h3 {
  font-family: "IBM Plex Sans Arabic";
  text-transform: none;
}
.portal .fct-cta p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 54ch;
}
.portal[dir="rtl"] .fct-cta p {
  font-family: "IBM Plex Sans Arabic";
  line-height: 1.85;
} /* ===== FACTORY: engine flow ===== */
.portal .flow {
  position: relative;
  margin-top: 60px;
  border: 1px solid var(--dk-line-2);
}
.portal .flow-rail {
  position: absolute;
  top: -1px;
  inset-inline: 0;
  height: 2px;
  background: var(--dk-line);
  overflow: hidden;
  z-index: 4;
}
.portal .flow-rail i {
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  inset-inline-start: 0;
  background: var(--lime);
}
.portal .flow.in .flow-rail i {
  animation: raildraw 2.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes raildraw {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.portal .flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 820px) {
  .portal .flow-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .portal .flow-grid {
    grid-template-columns: 1fr;
  }
}
.portal .flow-step {
  position: relative;
  padding: 30px 28px 32px;
  border-inline-end: 1px solid var(--dk-line);
  min-height: 290px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dk-card);
  border-radius: 0;
  transition: background 0.25s ease;
}
.portal .flow-step:last-child {
  border-inline-end: 0;
}
@media (max-width: 820px) {
  .portal .flow-step:nth-child(2n) {
    border-inline-end: 0;
  }
  .portal .flow-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--dk-line);
  }
}
.portal .flow-step:hover {
  background: var(--nova-ink-3);
}
.portal .flow-node {
  position: absolute;
  top: -6px;
  inset-inline-start: 28px;
  width: 11px;
  height: 11px;
  background: var(--lime);
  transform: rotate(45deg);
  z-index: 5;
}
.portal .fs-wm {
  position: absolute;
  bottom: -30px;
  inset-inline-end: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 148px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  z-index: 0;
  pointer-events: none;
}
.portal .fs-n {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--on-dk-dim);
  text-transform: uppercase;
  z-index: 1;
}
.portal .fs-vis {
  margin: 24px 0 auto;
  height: 52px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.portal .fs-vis svg {
  height: 52px;
  width: auto;
  max-width: 100%;
}
.portal .flow-step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: #FFFFFF;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  z-index: 1;
}
.portal[dir="rtl"] .flow-step h4 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .flow-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--on-dk-soft);
  margin: 0;
  z-index: 1;
}
.portal[dir="rtl"] .flow-step p {
  line-height: 1.8;
} /* ===== FACTORY: five gates ===== */
.portal .gates {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .portal .gates {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .portal .gates {
    grid-template-columns: 1fr 1fr;
  }
}
.portal .gate-card {
  background: var(--dk-card);
  border: 1px solid var(--dk-line);
  padding: 26px 24px 30px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.25s ease, background 0.25s ease;
}
.portal .gate-card:nth-child(1) {
  margin-top: 56px;
}
.portal .gate-card:nth-child(2) {
  margin-top: 112px;
}
.portal .gate-card:nth-child(3) {
  margin-top: 0;
}
.portal .gate-card:nth-child(4) {
  margin-top: 140px;
}
.portal .gate-card:nth-child(5) {
  margin-top: 40px;
}
@media (max-width: 980px) {
  .portal .gate-card {
    margin-top: 0 !important;
    min-height: 230px;
  }
}
.portal .gate-card:hover {
  border-color: rgba(190,234,77,0.55);
  transform: translateY(-6px);
  background: #143C30;
}
.portal .gate-rom {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--lime);
  letter-spacing: 0.06em;
}
.portal .gate-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid var(--dk-line);
  color: var(--lime);
  margin-bottom: 22px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.portal .gate-ic svg {
  width: 34px;
  height: 34px;
  display: block;
}
.portal .gate-card:hover .gate-ic {
  background: rgba(190,234,77,0.1);
  border-color: rgba(190,234,77,0.5);
}
.portal .gate-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: auto 0 0;
}
.portal[dir="rtl"] .gate-card h4 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .gate-reveal {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateX(-12px);
  transition: max-height 0.45s ease, opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1), margin 0.4s ease;
}
.portal .gate-card:hover .gate-reveal {
  max-height: 260px;
  opacity: 1;
  transform: translateX(0);
  margin-top: 18px;
}
.portal[dir="rtl"] .gate-reveal {
  transform: translateX(12px);
}
.portal[dir="rtl"] .gate-card:hover .gate-reveal {
  transform: translateX(0);
}
.portal .gate-rule {
  display: block;
  width: 46px;
  height: 3px;
  background: var(--lime);
  margin-bottom: 15px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1) 0.1s;
}
.portal .gate-card:hover .gate-rule {
  transform: scaleX(1);
}
.portal[dir="rtl"] .gate-rule {
  transform-origin: right;
}
.portal .gate-reveal p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-dk-soft);
  margin: 0;
}
.portal[dir="rtl"] .gate-reveal p {
  line-height: 1.75;
} /* ===== FACTORY: bilingual ===== */
.portal .bil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .portal .bil {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.portal .bil-vis {
  display: flex;
  align-items: stretch;
  gap: 16px;
  justify-content: center;
}
.portal .bil-card {
  flex: 1;
  background: var(--dk-card);
  border: 1px solid var(--dk-line);
  border-radius: 0;
  padding: 34px 22px;
  text-align: center;
}
.portal .bil-card[data-lang="ar"] {
  border-color: rgba(190,234,77,0.4);
  background: linear-gradient(180deg, rgba(190,234,77,0.06), transparent);
}
.portal .bil-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 18px;
}
.portal .bil-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.portal .bil-card[data-lang="ar"] .bil-word {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .bil-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--on-dk-soft);
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.portal[dir="rtl"] .bil-sub {
  font-family: "IBM Plex Sans Arabic";
}
.portal .bil-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--lime);
}
.portal .bil-eq {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}
.portal .bil-link span:not(.bil-eq) {
  width: 1px;
  height: 18px;
  background: var(--dk-line-2);
} /* ===== FACTORY: cost ===== */
.portal .cost {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .portal .cost {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.portal .run {
  background: var(--ink);
  border-radius: 0;
  padding: 32px 34px;
  color: #FFFFFF;
  box-shadow: 0 30px 60px -30px rgba(0,17,14,0.5);
}
.portal .run-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--on-dk-soft);
  margin-bottom: 18px;
}
.portal .run-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(190,234,77,0.18);
}
.portal .run-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 9vw, 104px);
  color: var(--lime);
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 4px 0 6px;
}
.portal .run-hero .c {
  font-size: 0.5em;
  vertical-align: 0.12em;
  font-weight: 700;
}
.portal .run-hero-sub {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dk-soft);
  margin-bottom: 24px;
}
.portal[dir="rtl"] .run-hero-sub {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .run-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 15px;
  color: var(--on-dk-soft);
}
.portal[dir="rtl"] .run-row {
  font-family: "IBM Plex Sans Arabic";
}
.portal .run-row b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.portal .run-row:nth-child(3) b,
.portal .run-row:nth-child(4) b {
  color: var(--lime);
}
.portal .run-foot {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--lime);
  letter-spacing: 0.02em;
}
.portal[dir="rtl"] .run-foot {
  font-family: "IBM Plex Sans Arabic";
} /* ===== FACTORY: coverage ===== */
.portal .cov {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .portal .cov {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.portal .cov-stat {
  text-align: center;
  border: 1px solid var(--dk-line);
  border-radius: 0;
  padding: 46px 30px;
  background: var(--dk-card);
}
.portal .cov-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 10vw, 118px);
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.05em;
}
.portal .cov-l {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--on-dk-soft);
  margin-top: 14px;
  letter-spacing: 0.03em;
}
.portal[dir="rtl"] .cov-l {
  font-family: "IBM Plex Sans Arabic";
} /* ===== FACTORY: partners ===== */
.portal .prt {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .portal .prt {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.portal .prt-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.portal .prt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 0;
  padding: 18px 22px;
}
.portal[dir="rtl"] .prt-row {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 700;
}
.portal .prt-ic {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--grn-deep);
}
.portal .prt-ic svg {
  width: 100%;
  height: 100%;
} /* ===== FACTORY: why it matters ===== */
.portal .vmatter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--dk-line-2);
}
@media (max-width: 820px) {
  .portal .vmatter {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .portal .vmatter {
    grid-template-columns: 1fr;
  }
}
.portal .vm {
  padding: 36px 30px 10px;
  border-inline-end: 1px solid var(--dk-line);
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.portal .vmatter .vm:last-child {
  border-inline-end: 0;
}
@media (max-width: 820px) {
  .portal .vmatter .vm:nth-child(2) {
    border-inline-end: 0;
  }
}
.portal .vm-ic {
  display: block;
  width: 36px;
  height: 36px;
  color: var(--lime);
}
.portal .vm-ic svg {
  width: 100%;
  height: 100%;
  display: block;
}
.portal .vm-t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: #FFFFFF;
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.portal[dir="rtl"] .vm-t {
  font-family: "IBM Plex Sans Arabic";
  line-height: 1.5;
} /* =========================================================
     NEW SECTIONS, lighter palette, illustrated + animated
     ========================================================= */
.portal .band-white {
  background: var(--paper-2);
}
.portal .band-soft {
  background: var(--paper-3);
} /* richer reveal (fade up + slight scale + blur clear) */
.portal [data-reveal] {
  opacity: 0;
  transform: translateY(46px) scale(0.972);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.8, 0.3, 1),
    transform 0.9s cubic-bezier(0.2, 0.85, 0.28, 1.02), filter 0.7s ease;
}
.portal [data-reveal].in {
  opacity: 1;
  transform: none;
  filter: none;
}
#demo [data-reveal].in{
  max-width: 780px;
}
.portal .lead-line {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 70ch;
  margin: 28px auto 0;
  text-align: center;
}
.portal .band-dk .lead-line {
  color: var(--on-dk-soft);
}
.portal[dir="rtl"] .lead-line {
  line-height: 1.9;
} /* ===== ADD 1, Two-system flow ===== */
.portal .tsys {
  display: flex;
  align-items: stretch;
  margin-top: 56px;
}
@media (max-width: 920px) {
  .portal .tsys {
    flex-direction: column;
    gap: 18px;
  }
}
.portal .tsys-node {
  flex: 1;
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 0;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 44px -30px rgba(0,17,14,0.3);
}
.portal .tsys-node[data-mid="true"] {
  background: var(--nova-ink-3);
  border-color: #1A5648;
  color: #FFFFFF;
  box-shadow: 0 26px 56px -28px rgba(0,17,14,0.55);
}
.portal .tsys-seq {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grn-deep);
}
.portal .tsys-node[data-mid="true"] .tsys-seq {
  color: var(--lime);
}
.portal[dir="rtl"] .tsys-seq {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0.02em;
}
.portal .tsys-node h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 13px 0 5px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.portal .tsys-node[data-mid="true"] h4 {
  color: #FFFFFF;
}
.portal[dir="rtl"] .tsys-node h4 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .tsys-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  margin-bottom: 20px;
}
.portal .tsys-node[data-mid="true"] .tsys-tag {
  color: var(--on-dk-soft);
}
.portal[dir="rtl"] .tsys-tag {
  font-family: "IBM Plex Sans Arabic";
}
.portal .tsys-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.portal .tsys-list span {
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}
.portal .tsys-list span .ti {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--grn);
  margin-top: 1px;
}
.portal .tsys-list span .ti svg {
  width: 100%;
  height: 100%;
  display: block;
}
.portal[dir="rtl"] .tsys-list span {
  font-family: "IBM Plex Sans Arabic";
}
.portal .tsys-node[data-mid="true"] .tsys-list span {
  color: rgba(255, 255, 255, 0.82);
}
.portal .tsys-node[data-mid="true"] .tsys-list span .ti {
  color: var(--lime);
}
.portal .tsys-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: var(--lime);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 6px 0 16px;
}
.portal .tsys-conn {
  width: 70px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 920px) {
  .portal .tsys-conn {
    width: 100%;
    height: 30px;
  }
  .portal .tsys-conn svg {
    transform: rotate(90deg);
  }
}
.portal .tsys-conn svg {
  width: 100%;
  height: 32px;
  overflow: visible;
}
.portal .tsys-conn .trk {
  stroke: var(--line-l2);
  stroke-width: 2;
}
.portal .tsys-conn .flw {
  stroke: var(--grn);
  stroke-width: 2.5;
  stroke-dasharray: 6 9;
  stroke-linecap: round;
}
.portal .tsys.in .tsys-conn .flw {
  animation: flowdash 1.05s linear infinite;
}
@keyframes flowdash {
  to {
    stroke-dashoffset: -30;
  }
}
.portal .tsys-conn .pkt {
  fill: var(--grn-bright);
  opacity: 0;
}
.portal .tsys.in .tsys-conn .pkt {
  animation: pktmove 2s ease-in-out infinite;
}
.portal .tsys-conn:nth-of-type(4) .pkt {
  animation-delay: 0.6s;
}
@keyframes pktmove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(64px);
    opacity: 0;
  }
} /* ===== How It Works, telemetry bento ===== */
.portal .hiwb {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
  grid-template-areas: "feat feat alpha chart" "s1 s2 wide wide";
}
@media (max-width: 900px) {
  .portal .hiwb {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "feat feat" "s1 s2" "alpha chart" "wide wide";
  }
}
@media (max-width: 560px) {
  .portal .hiwb {
    grid-template-columns: 1fr;
    grid-template-areas: "feat" "s1" "s2" "alpha" "chart" "wide";
  }
}
.portal .hb-card {
  border: 1px solid var(--dk-line-2);
  background: var(--dk-card);
  padding: 28px;
  position: relative;
}
.portal .hb-ml {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.portal[dir="rtl"] .hb-ml {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .hb-feat {
  grid-area: feat;
  display: flex;
  flex-direction: column;
}
.portal .hb-feat p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-dk-soft);
  margin: 0;
  max-width: 46ch;
}
.portal[dir="rtl"] .hb-feat p {
  line-height: 2;
  font-family: "IBM Plex Sans Arabic";
}
.portal .hb-stat {
  display: flex;
  flex-direction: column;
}
.portal .hb-stat.s1 {
  grid-area: s1;
}
.portal .hb-stat.s2 {
  grid-area: s2;
}
.portal .hb-stat .ic {
  width: 30px;
  height: 30px;
  color: var(--lime);
}
.portal .hb-stat .ic svg {
  width: 100%;
  height: 100%;
  display: block;
}
.portal .hb-stat .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 42px);
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: auto;
  padding-top: 28px;
}
.portal .hb-stat .l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dk-dim);
  margin-top: 12px;
}
.portal[dir="rtl"] .hb-stat .l {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .hb-flow {
  grid-area: alpha;
}
.portal .hb-flow .rows {
  display: flex;
  flex-direction: column;
}
.portal .hb-frow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--dk-line);
}
.portal .hb-frow:last-child {
  border-bottom: 0;
}
.portal .hb-frow .n {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--on-dk-dim);
  width: 24px;
  flex: none;
}
.portal .hb-frow .t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.portal[dir="rtl"] .hb-frow .t {
  font-family: "IBM Plex Sans Arabic";
}
.portal .hb-frow.on .n,
.portal .hb-frow.on .t {
  color: var(--lime);
}
.portal .hb-chart {
  grid-area: chart;
  display: flex;
  flex-direction: column;
}
.portal .hb-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 130px;
  margin: 6px 0 16px;
  flex: 1;
}
.portal .hb-bars i {
  flex: 1;
  background: var(--nova-ink-5);
  transform: scaleY(0);
  transform-origin: bottom;
}
.portal .hb-bars i.on {
  background: var(--lime);
}
.portal .hiwb.in .hb-bars i {
  transform: scaleY(1);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.portal .hiwb.in .hb-bars i:nth-child(2) {
  transition-delay: 0.08s;
}
.portal .hiwb.in .hb-bars i:nth-child(3) {
  transition-delay: 0.16s;
}
.portal .hiwb.in .hb-bars i:nth-child(4) {
  transition-delay: 0.24s;
}
.portal .hiwb.in .hb-bars i:nth-child(5) {
  transition-delay: 0.32s;
}
.portal .hb-cl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dk-dim);
  text-align: center;
}
.portal[dir="rtl"] .hb-cl {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .hb-wide {
  grid-area: wide;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 560px) {
  .portal .hb-wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.portal .hb-diamond {
  width: 92px;
  height: 92px;
  flex: none;
  border: 2px dashed rgba(190,234,77,0.5);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal .hb-diamond svg {
  width: 34px;
  height: 34px;
  transform: rotate(-45deg);
  color: var(--lime);
}
.portal .hb-wide h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #FFFFFF;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.portal[dir="rtl"] .hb-wide h4 {
  font-family: "IBM Plex Sans Arabic";
  text-transform: none;
}
.portal .hb-wide p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--on-dk-soft);
  margin: 0;
  max-width: 62ch;
}
.portal[dir="rtl"] .hb-wide p {
  font-family: "IBM Plex Sans Arabic";
  line-height: 1.85;
} /* ===== ADD 2, Coverage (10 sectors / 1,168 roles) ===== */
.portal .cov2 {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 900px) {
  .portal .cov2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.portal .cov2-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 11vw, 132px);
  color: var(--grn-deep);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.portal .cov2-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-top: 14px;
}
.portal[dir="rtl"] .cov2-sub {
  font-family: "IBM Plex Sans Arabic";
}
.portal .cov2-note {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 34ch;
}
.portal[dir="rtl"] .cov2-note {
  line-height: 1.85;
}
.portal .cov2-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  background: var(--grn-soft);
  border: 1px solid rgba(190,234,77,0.3);
  padding: 10px 16px;
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--grn-deep);
}
.portal[dir="rtl"] .cov2-chip {
  font-family: "IBM Plex Sans Arabic";
}
.portal .sct-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.portal .sct-row {
  display: grid;
  grid-template-columns: 230px 1fr 52px;
  gap: 18px;
  align-items: center;
}
@media (max-width: 600px) {
  .portal .sct-row {
    grid-template-columns: 1fr 44px;
  }
  .portal .sct-row .sct-track {
    display: none;
  }
}
.portal .sct-nm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.portal[dir="rtl"] .sct-nm {
  font-family: "IBM Plex Sans Arabic";
}
.portal .sct-track {
  height: 9px;
  background: var(--paper-3);
  border-radius: 0;
  overflow: hidden;
}
.portal .sct-track i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--grn), var(--grn-bright));
  border-radius: 0;
}
.portal .cov2.in .sct-track i {
  width: var(--w);
  transition: width 1.1s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.portal .cov2.in .sct-row:nth-child(2) .sct-track i {
  transition-delay: 0.06s;
}
.portal .cov2.in .sct-row:nth-child(3) .sct-track i {
  transition-delay: 0.12s;
}
.portal .cov2.in .sct-row:nth-child(4) .sct-track i {
  transition-delay: 0.18s;
}
.portal .cov2.in .sct-row:nth-child(5) .sct-track i {
  transition-delay: 0.24s;
}
.portal .cov2.in .sct-row:nth-child(6) .sct-track i {
  transition-delay: 0.3s;
}
.portal .cov2.in .sct-row:nth-child(7) .sct-track i {
  transition-delay: 0.36s;
}
.portal .cov2.in .sct-row:nth-child(8) .sct-track i {
  transition-delay: 0.42s;
}
.portal .cov2.in .sct-row:nth-child(9) .sct-track i {
  transition-delay: 0.48s;
}
.portal .cov2.in .sct-row:nth-child(10) .sct-track i {
  transition-delay: 0.54s;
}
.portal .sct-ct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  text-align: end;
  letter-spacing: -0.02em;
} /* ===== Governance, quality-gate status cards ===== */
.portal .gov {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  margin-top: 50px;
  align-items: start;
}
@media (max-width: 900px) {
  .portal .gov {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.portal .gov-pillars {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.portal .gov-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line-l);
  background: var(--paper-2);
  padding: 22px 24px;
}
.portal .gov-pillar .pic {
  width: 28px;
  height: 28px;
  flex: none;
  color: var(--ink);
  margin-top: 2px;
}
.portal .gov-pillar .pic svg {
  width: 100%;
  height: 100%;
}
.portal .gov-pillar h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 5px;
  letter-spacing: -0.01em;
}
.portal[dir="rtl"] .gov-pillar h4 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .gov-pillar p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.portal[dir="rtl"] .gov-pillar p {
  font-family: "IBM Plex Sans Arabic";
  line-height: 1.7;
}
.portal .gov-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) {
  .portal .gov-cards {
    grid-template-columns: 1fr;
  }
}
.portal .gcard {
  border: 1px solid var(--line-l2);
  background: var(--paper-2);
  border-inline-start: 3px solid var(--lime);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  min-height: 172px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.portal .gcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -26px rgba(0,17,14,0.3);
}
.portal .gcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portal .gcard-id {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.portal .gcard-ck {
  width: 18px;
  height: 18px;
  color: var(--grn-deep);
}
.portal .gcard-ck svg {
  width: 100%;
  height: 100%;
  display: block;
}
.portal .gcard h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 13px 0 7px;
  letter-spacing: -0.01em;
}
.portal[dir="rtl"] .gcard h4 {
  font-family: var(--font-mono);
}
.portal .gcard .gdesc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 auto;
}
.portal[dir="rtl"] .gcard .gdesc {
  font-family: "IBM Plex Sans Arabic";
  line-height: 1.65;
}
.portal .gcard-bar {
  height: 5px;
  background: var(--paper-3);
  margin-top: 18px;
  overflow: hidden;
}
.portal .gcard-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--lime);
}
.portal .gov.in .gcard-bar i {
  width: 100%;
  transition: width 1s cubic-bezier(0.2, 0.8, 0.3, 1);
} /* ===== varied hover animations (distinct per component) ===== */

@keyframes hpulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
}
@keyframes hwig {
  0%,
  100% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(-10deg);
  }
  65% {
    transform: rotate(7deg);
  }
} /* factory stat, number lifts + lime baseline sweeps in */
.portal .fct-stat {
  position: relative;
  overflow: hidden;
}
.portal .fct-stat .v {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), color 0.3s ease;
}
.portal .fct-stat:hover .v {
  transform: translateY(-4px);
}
.portal .fct-stat::after {
  content: "";
  position: absolute;
  inset-inline: 34px;
  bottom: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.portal[dir="rtl"] .fct-stat::after {
  transform-origin: right;
}
.portal .fct-stat:hover::after {
  transform: scaleX(1);
} /* HIW bento, glow-lift + icon pop */
.portal .hb-card {
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.3s ease, background 0.3s ease;
}
.portal .hb-card:hover {
  transform: translateY(-5px);
  border-color: rgba(190,234,77,0.5);
}
.portal .hb-stat:hover .ic {
  animation: hpulse 0.55s ease;
} /* governance, left bar thickens + check pops */
.portal .gcard {
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.25s ease, border-inline-start-width 0.22s ease;
}
.portal .gcard:hover {
  border-inline-start-width: 7px;
}
.portal .gcard:hover .gcard-ck {
  animation: hpulse 0.55s ease;
} /* ecosystem nodes, lift + icons slide */
.portal .tsys-node {
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.3s ease, border-color 0.3s ease;
}
.portal .tsys-node:hover {
  transform: translateY(-6px);
  border-color: rgba(190,234,77,0.45);
}
.portal .tsys-node[data-mid="true"]:hover {
  transform: translateY(-6px) scale(1.015);
}
.portal .tsys-list span .ti {
  transition: transform 0.25s ease;
}
.portal .tsys-node:hover .tsys-list span .ti {
  transform: translateX(4px);
}
.portal[dir="rtl"] .tsys-node:hover .tsys-list span .ti {
  transform: translateX(-4px);
} /* why it matters, icon wiggle + text nudge */
.portal .vm .vm-ic {
  transition: transform 0.3s ease;
}
.portal .vm:hover .vm-ic {
  animation: hwig 0.55s ease;
}
.portal .vm .vm-t {
  transition: transform 0.25s ease;
}
.portal .vm:hover .vm-t {
  transform: translateY(-3px);
} /* bilingual, lime glow ring */
.portal .bil-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.portal .bil-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(190,234,77,0.4),
    0 26px 54px -32px rgba(190,234,77,0.35);
} /* engine stages, mini-visual scales + watermark brightens */
.portal .flow-step .fs-vis {
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.portal .flow-step:hover .fs-vis {
  transform: scale(1.08);
}
.portal .flow-step .fs-wm {
  transition: color 0.3s ease;
}
.portal .flow-step:hover .fs-wm {
  color: rgba(190,234,77,0.09);
} /* ===== Economic model, efficiency telemetry ===== */
.portal .eff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}
@media (max-width: 760px) {
  .portal .eff {
    grid-template-columns: 1fr;
  }
}
.portal .eff-card {
  border: 1px solid var(--dk-line-2);
  background: var(--dk-card);
  padding: 30px 30px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.3s ease;
}
.portal .eff-card:hover {
  transform: translateY(-5px);
  border-color: rgba(190,234,77,0.5);
}
.portal .eff-card:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  border-width: 0 54px 54px 0;
  border-style: solid;
  border-color: transparent rgba(190,234,77,0.1) transparent transparent;
}
.portal .eff-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dk-dim);
}
.portal[dir="rtl"] .eff-k {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .eff-v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 64px);
  color: var(--lime);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 16px 0;
}
.portal .eff-d {
  font-size: 15px;
  color: var(--on-dk-soft);
}
.portal[dir="rtl"] .eff-d {
  font-family: "IBM Plex Sans Arabic";
}
.portal .eff-chart {
  margin-top: 16px;
  border: 1px solid var(--dk-line-2);
  background: var(--dk-card);
  padding: 32px 34px 36px;
}
.portal .eff-chart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 12px;
}
.portal .eff-chart-h {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dk-soft);
}
.portal[dir="rtl"] .eff-chart-h {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .eff-leg {
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dk-dim);
}
.portal .eff-leg span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.portal .eff-leg i {
  width: 11px;
  height: 11px;
}
.portal .eff-leg .lv {
  background: var(--lime);
}
.portal .eff-leg .le {
  background: #337065;
}
.portal .eff-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 240px;
}
@media (max-width: 760px) {
  .portal .eff-bars {
    height: 170px;
    gap: 7px;
  }
}
.portal .eff-bars i {
  flex: 1;
  background: #337065;
  transform: scaleY(0);
  transform-origin: bottom;
}
.portal .eff-bars i.hi {
  background: var(--lime);
}
.portal .eff-chart.in .eff-bars i {
  transform: scaleY(1);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.portal .eff-chart.in .eff-bars i:nth-child(2) {
  transition-delay: 0.05s;
}
.portal .eff-chart.in .eff-bars i:nth-child(3) {
  transition-delay: 0.1s;
}
.portal .eff-chart.in .eff-bars i:nth-child(4) {
  transition-delay: 0.15s;
}
.portal .eff-chart.in .eff-bars i:nth-child(5) {
  transition-delay: 0.2s;
}
.portal .eff-chart.in .eff-bars i:nth-child(6) {
  transition-delay: 0.25s;
}
.portal .eff-chart.in .eff-bars i:nth-child(7) {
  transition-delay: 0.3s;
}
.portal .eff-chart.in .eff-bars i:nth-child(8) {
  transition-delay: 0.35s;
}
.portal .eff-chart.in .eff-bars i:nth-child(9) {
  transition-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .portal .eff-chart.in .eff-bars i {
    transition: none !important;
    transform: none !important;
  }
} /* ===== Bilingual Engine Synergy ===== */
.portal .syn {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 920px) {
  .portal .syn {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.portal .syn-diagram {
  border: 1px solid var(--dk-line-2);
  background: radial-gradient(
      120% 120% at 28% 18%,
      rgba(190,234,77,0.05),
      transparent 58%
    ),
    #0B241E;
  padding: 44px 38px 56px;
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.portal .syn-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.portal .syn-node {
  border: 1px solid var(--dk-line-2);
  background: #143C30;
  padding: 15px 17px;
}
.portal .syn-node.act {
  border-color: rgba(190,234,77,0.7);
  box-shadow: 0 0 0 1px rgba(190,234,77,0.25);
}
.portal .syn-nlabel {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dk-dim);
  margin-bottom: 11px;
}
.portal .syn-ar {
  font-family: "IBM Plex Sans Arabic";
  font-weight: 700;
  font-size: 19px;
  color: #FFFFFF;
  text-align: right;
}
.portal .syn-uline {
  height: 3px;
  background: var(--lime);
  width: 62%;
  margin-inline-start: auto;
  margin-top: 10px;
}
.portal .syn-en {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #FFFFFF;
  line-height: 1.2;
}
.portal .syn-bar {
  height: 7px;
  background: var(--lime);
}
.portal .syn-bar.part {
  width: 68%;
}
.portal .syn-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.portal .syn-core-ic {
  width: 54px;
  height: 54px;
  border: 1.5px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  box-shadow: 0 0 26px -4px rgba(190,234,77,0.55);
}
.portal .syn-core-ic svg {
  width: 26px;
  height: 26px;
}
.portal .syn-core-l {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.portal .syn-status {
  position: absolute;
  bottom: 18px;
  inset-inline-end: 24px;
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--on-dk-soft);
}
.portal .syn-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.portal .syn-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}
.portal .syn-r-head {
  border-inline-start: 3px solid var(--lime);
  padding-inline-start: 22px;
  margin-bottom: 32px;
}
.portal .syn-r-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.portal[dir="rtl"] .syn-r-head h3 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .syn-r-head p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--on-dk-soft);
  margin: 0;
}
.portal[dir="rtl"] .syn-r-head p {
  font-family: "IBM Plex Sans Arabic";
  line-height: 1.9;
}
.portal .syn-feats {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.portal .syn-feat {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: start;
}
.portal .syn-feat .ck {
  width: 24px;
  height: 24px;
  color: var(--lime);
}
.portal .syn-feat .ck svg {
  width: 100%;
  height: 100%;
  display: block;
}
.portal .syn-feat h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #FFFFFF;
  margin: 0 0 5px;
}
.portal[dir="rtl"] .syn-feat h4 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .syn-feat p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--on-dk-soft);
  margin: 0;
}
.portal[dir="rtl"] .syn-feat p {
  font-family: "IBM Plex Sans Arabic";
  line-height: 1.75;
}
@media (prefers-reduced-motion: reduce) {
  .portal .fct-stat:hover .v,
  .portal .tsys-node:hover,
  .portal .tsys-node[data-mid="true"]:hover,
  .portal .hb-card:hover,
  .portal .bil-card:hover,
  .portal .flow-step:hover .fs-vis,
  .portal .tsys-node:hover .tsys-list span .ti,
  .portal .vm:hover .vm-t {
    transform: none !important;
  }
  .portal .hb-stat:hover .ic,
  .portal .gcard:hover .gcard-ck,
  .portal .vm:hover .vm-ic {
    animation: none !important;
  }
  .portal .fct-stat:hover::after {
    transform: scaleX(1) !important;
  }
}
.portal .gov.in .gcard:nth-child(2) .gcard-bar i {
  transition-delay: 0.1s;
}
.portal .gov.in .gcard:nth-child(3) .gcard-bar i {
  transition-delay: 0.2s;
}
.portal .gov.in .gcard:nth-child(4) .gcard-bar i {
  transition-delay: 0.3s;
}
.portal .gov.in .gcard:nth-child(5) .gcard-bar i {
  transition-delay: 0.4s;
} /* ===== ADD 4, Compliance & governance ===== */
.portal .cstack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 50px;
  max-width: 860px;
}
.portal .crow {
  display: grid;
  grid-template-columns: 48px 178px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-inline-start: 4px solid var(--grn);
  border-radius: 0;
  padding: 24px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 760px) {
  .portal .crow {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 20px;
  }
  .portal .crow .cdesc {
    grid-column: 1/-1;
  }
}
.portal .crow:hover {
  transform: translateX(4px);
  box-shadow: 0 20px 40px -28px rgba(0,17,14,0.3);
}
.portal[dir="rtl"] .crow:hover {
  transform: translateX(-4px);
}
.portal .cck {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--line-l2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: none;
}
.portal .cck::after {
  content: "";
  width: 13px;
  height: 7px;
  border-inline-start: 2.5px solid var(--grn-deep);
  border-bottom: 2.5px solid var(--grn-deep);
  transform: rotate(-45deg) translateY(-1px) scale(0);
  transform-origin: center;
}
.portal .cstack.in .cck {
  border-color: var(--grn);
  background: var(--grn-soft);
}
.portal .cstack.in .cck::after {
  transform: rotate(-45deg) translateY(-1px) scale(1);
  transition: transform 0.4s cubic-bezier(0.2, 1.4, 0.5, 1);
}
.portal .cstack.in .crow:nth-child(1) .cck::after {
  transition-delay: 0.2s;
}
.portal .cstack.in .crow:nth-child(2) .cck::after {
  transition-delay: 0.4s;
}
.portal .cstack.in .crow:nth-child(3) .cck::after {
  transition-delay: 0.6s;
}
.portal .cstack.in .crow:nth-child(4) .cck::after {
  transition-delay: 0.8s;
}
.portal .cstack.in .crow:nth-child(5) .cck::after {
  transition-delay: 1s;
}
.portal .cstd {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.portal[dir="rtl"] .cstd {
  font-family: var(--font-mono);
}
.portal .cdesc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.portal[dir="rtl"] .cdesc {
  font-family: "IBM Plex Sans Arabic";
  line-height: 1.75;
} /* ===== ADD 5, Demo request + form ===== */
.portal .dmo {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .portal .dmo {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
.portal .dmo-l {
  position: sticky;
  top: 96px;
}
@media (max-width: 900px) {
  .portal .dmo-l {
    position: static;
  }
}
.portal .dmo-pts {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.portal .dmo-pts li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.portal[dir="rtl"] .dmo-pts li {
  font-family: "IBM Plex Sans Arabic";
}
.portal .dmo-pts .rck {
  flex: none;
  width: 22px;
  height: 22px;
  border: 1px solid var(--grn);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal .dmo-pts .rck::after {
  content: "";
  width: 8px;
  height: 5px;
  border-inline-start: 2px solid var(--grn-deep);
  border-bottom: 2px solid var(--grn-deep);
  transform: rotate(-45deg) translateY(-1px);
}
.portal .dform {
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 0;
  box-shadow: 0 24px 54px -28px rgba(0,17,14,0.28);
  padding: 34px 34px 36px;
}
.portal .dform h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  color: var(--ink);
  margin: 0 0 6px;
}
.portal[dir="rtl"] .dform h3 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .dform .dnote {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.portal[dir="rtl"] .dform .dnote {
  font-family: "IBM Plex Sans Arabic";
}
.portal .df-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.portal .df {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.portal .df.df-full {
  grid-column: 1/-1;
}
.portal .df span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.portal[dir="rtl"] .df span {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .df input,
.portal .df select,
.portal .df textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-l2);
  border-radius: 0;
  padding: 12px 13px;
  outline: none;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.portal[dir="rtl"] .df input,
.portal[dir="rtl"] .df select,
.portal[dir="rtl"] .df textarea {
  font-family: "IBM Plex Sans Arabic";
}
.portal .df input:focus,
.portal .df select:focus,
.portal .df textarea:focus {
  border-color: var(--grn);
  box-shadow: 0 0 0 3px rgba(190,234,77,0.14);
}
.portal .df textarea {
  resize: vertical;
}
.portal .df-submit {
  margin-top: 22px;
  width: 100%;
}
.portal .dsuccess {
  text-align: center;
  padding: 44px 14px;
}
.portal .dcheck {
  width: 58px;
  height: 58px;
  border: 2px solid var(--grn);
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grn-soft);
}
.portal .dcheck::after {
  content: "";
  width: 18px;
  height: 10px;
  border-inline-start: 3px solid var(--grn-deep);
  border-bottom: 3px solid var(--grn-deep);
  transform: rotate(-45deg) translateY(-2px);
}
.portal .dsuccess h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 9px;
}
.portal[dir="rtl"] .dsuccess h4 {
  font-family: "IBM Plex Sans Arabic";
}
.portal .dsuccess p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 34ch;
  line-height: 1.5;
}
.portal[dir="rtl"] .dsuccess p {
  font-family: "IBM Plex Sans Arabic";
  line-height: 1.8;
} /* ===== COMMAND CENTER ===== */
.portal .cmd {
  margin-top: 56px;
  border: 1px solid var(--dk-line-2);
  background: var(--nova-ink-1);
  display: grid;
  grid-template-columns: 1.55fr 1fr;
}
@media (max-width: 860px) {
  .portal .cmd {
    grid-template-columns: 1fr;
  }
}
.portal .cmd-main {
  padding: 34px 36px;
  border-inline-end: 1px solid var(--dk-line);
}
@media (max-width: 860px) {
  .portal .cmd-main {
    border-inline-end: 0;
    border-bottom: 1px solid var(--dk-line);
  }
}
.portal .cmd-bar0 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dk-dim);
  margin-bottom: 30px;
}
.portal .cmd-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
}
.portal .cmd-live::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
.portal .cmd-score-l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dk-soft);
}
.portal[dir="rtl"] .cmd-score-l,
.portal[dir="rtl"] .cmd-bar0,
.portal[dir="rtl"] .cmd-cell .k,
.portal[dir="rtl"] .cmd-stream-h {
  font-family: "IBM Plex Sans Arabic";
  letter-spacing: 0;
}
.portal .cmd-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(58px, 8vw, 96px);
  color: #FFFFFF;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 8px 0 24px;
}
.portal .cmd-score b {
  color: var(--lime);
}
.portal .cmd-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.portal .cmd-track i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--lime);
}
.portal .cmd.in .cmd-track i {
  width: 89%;
  transition: width 1.3s cubic-bezier(0.3, 0.8, 0.3, 1) 0.35s;
}
.portal .cmd-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.portal .cmd-cell {
  border: 1px solid var(--dk-line);
  padding: 16px 18px;
}
.portal .cmd-cell .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dk-dim);
}
.portal .cmd-cell .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--lime);
  margin-top: 9px;
  letter-spacing: -0.01em;
}
.portal .cmd-stream {
  padding: 30px 26px;
}
.portal .cmd-stream-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dk-soft);
  margin-bottom: 18px;
}
.portal .cmd-log {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.portal .cmd-log span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--on-dk-dim);
  padding: 8px 11px;
  border: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.portal .cmd-log span i {
  font-style: normal;
  color: var(--on-dk-soft);
}
.portal .cmd-log span.hot {
  color: var(--lime);
  border-color: var(--dk-line-2);
  background: rgba(190,234,77,0.06);
}
.portal .cmd-log span.hot i {
  color: var(--lime);
}
.portal[dir="rtl"] .cmd-log span {
  font-family: var(--font-mono);
}

@media (prefers-reduced-motion: reduce) {
  .portal .cmd.in .cmd-track i {
    transition: none !important;
    width: 89% !important;
  }
  .portal .gate-card:hover .gate-rule {
    transition: none !important;
  }
  .portal .gate-card:hover .gate-reveal {
    transition: none !important;
  }
  .portal .tsys.in .tsys-conn .flw,
  .portal .tsys.in .tsys-conn .pkt {
    animation: none !important;
  }
  .portal .hiwb.in .hb-bars i {
    transition: none !important;
    transform: none !important;
  }
  .portal .cov2.in .sct-track i {
    transition: none !important;
    width: var(--w) !important;
  }
  .portal .cstack.in .cck::after {
    transition: none !important;
    transform: rotate(-45deg) translateY(-1px) scale(1) !important;
  }
  .portal .flow.in .flow-rail i {
    animation: none !important;
  }
}


/* Nova HTML copy: workflow descriptions */
.portal .hb-frow .t small { display:block; margin-top:4px; max-width:72ch; font-family:var(--font-body); font-size:12px; font-weight:400; line-height:1.55; color:var(--on-dk-dim); letter-spacing:0; }
.portal .hb-frow.on .t small { color:rgba(190,234,77,0.72); }
.sct-head {
    display: flex;
    justify-content: space-between;
}