:root {
  --north-pointer-x: 50%;
  --north-pointer-y: 32%;
  --north-scroll-progress: 0;
  --north-cinematic-width: 1460px;
}

.north-arrival {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--north-text);
  background:
    radial-gradient(circle at 50% 48%, rgba(75, 111, 255, 0.16), transparent 24%),
    var(--north-base);
  pointer-events: none;
  animation: north-arrival-exit 2200ms var(--north-ease) both;
}

.north-arrival::before,
.north-arrival::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.north-arrival::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(128, 216, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 216, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle, black, transparent 68%);
}

.north-arrival::after {
  inset-block-start: 50%;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 111, 255, 0.55), var(--north-gold), rgba(128, 216, 255, 0.48), transparent);
  box-shadow: 0 0 32px rgba(128, 216, 255, 0.18);
  transform: scaleX(0);
  animation: north-arrival-horizon 1450ms 180ms var(--north-ease) both;
}

.north-arrival__meridian {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(232, 196, 122, 0.62) 34%, rgba(75, 111, 255, 0.42) 70%, transparent);
  box-shadow: 0 0 22px rgba(232, 196, 122, 0.16);
  transform: scaleY(0);
  animation: north-arrival-meridian 1250ms 80ms var(--north-ease) both;
}

.north-arrival__meridian i,
.north-arrival__meridian b {
  position: absolute;
  inset-inline-start: 50%;
  width: 9px;
  height: 9px;
  background: var(--north-gold-pale);
  box-shadow: 0 0 26px rgba(232, 196, 122, 0.8);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  transform: translate(-50%, -50%);
}

.north-arrival__meridian i { inset-block-start: 17%; }
.north-arrival__meridian b { inset-block-start: 83%; }

.north-arrival__compass {
  position: relative;
  display: grid;
  width: 172px;
  height: 172px;
  place-items: center;
  border: 1px solid rgba(232, 196, 122, 0.38);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgba(123, 136, 255, 0.035),
    0 0 90px rgba(75, 111, 255, 0.24),
    inset 0 0 52px rgba(75, 111, 255, 0.09);
  opacity: 0;
  transform: scale(0.44) rotate(-28deg);
  animation: north-arrival-compass 1500ms 120ms var(--north-ease) both;
}

.north-arrival__compass span {
  position: absolute;
  border: 1px solid rgba(123, 136, 255, 0.28);
  border-radius: 50%;
}

.north-arrival__compass span:nth-child(1) { inset: -25px; border-style: dashed; }
.north-arrival__compass span:nth-child(2) { inset: 22px; }
.north-arrival__compass span:nth-child(3) { inset: 48px; border-color: rgba(128, 216, 255, 0.3); }

.north-arrival__compass img {
  width: 62px;
  height: 62px;
  filter: drop-shadow(0 0 24px rgba(232, 196, 122, 0.7));
  animation: north-arrival-star 1150ms 300ms var(--north-ease) both;
}

.north-arrival__name,
.north-arrival__signal {
  position: absolute;
  inset-inline: 20px;
  margin: 0;
  text-align: center;
}

.north-arrival__name {
  inset-block-start: calc(50% + 130px);
  display: flex;
  gap: 9px;
  justify-content: center;
  align-items: baseline;
  font-family: "PN Display", serif;
  opacity: 0;
  animation: north-arrival-copy 900ms 520ms var(--north-ease) both;
}

.north-arrival__name span {
  color: var(--north-gold);
  font-family: "PN Inter", sans-serif;
  font-size: 10px;
  font-weight: 680;
}

.north-arrival__name strong {
  font-size: 29px;
  font-weight: 560;
}

html[dir="rtl"] .north-arrival__name {
  font-family: "PN Arabic", sans-serif;
}

html[dir="rtl"] .north-arrival__name span,
html[dir="rtl"] .north-arrival__name strong {
  font-family: "PN Arabic", sans-serif;
}

.north-arrival__signal {
  inset-block-end: 46px;
  color: rgba(170, 178, 200, 0.62);
  font-size: 9px;
  font-weight: 650;
  opacity: 0;
  animation: north-arrival-copy 800ms 680ms var(--north-ease) both;
}

.north-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  display: none;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(128, 216, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(75, 111, 255, 0.2), inset 0 0 16px rgba(128, 216, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--north-cursor-x, -100px) - 50%), calc(var(--north-cursor-y, -100px) - 50%), 0);
  transition: width 240ms var(--north-ease), height 240ms var(--north-ease), border-color 240ms ease, opacity 180ms ease;
}

.north-cursor::before,
.north-cursor::after {
  position: absolute;
  content: "";
  background: rgba(232, 196, 122, 0.5);
}

.north-cursor::before { inset-block-start: 50%; inset-inline: -7px; height: 1px; }
.north-cursor::after { inset-inline-start: 50%; inset-block: -7px; width: 1px; }

.north-cursor i {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(232, 196, 122, 0.48);
  transform: rotate(45deg);
  transition: transform 140ms ease, background 140ms ease;
}

.north-cursor.is-pressed i {
  background: rgba(232, 196, 122, 0.18);
  transform: rotate(45deg) scale(0.58);
}

.north-cursor span {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--north-gold-pale);
  box-shadow: 0 0 13px rgba(232, 196, 122, 0.9);
  transform: translate(-50%, -50%);
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .north-cursor { display: block; }
  .north-experience.is-cursor-visible .north-cursor { opacity: 0.86; }
  .north-experience.is-cursor-interactive .north-cursor {
    width: 52px;
    height: 52px;
    border-color: rgba(232, 196, 122, 0.7);
    opacity: 1;
  }
}

.north-experience {
  --north-ambient-blue: rgba(75, 111, 255, 0.18);
  --north-ambient-gold: rgba(232, 196, 122, 0.16);
  overflow-x: clip;
  overflow-y: visible;
  background:
    radial-gradient(circle at var(--north-pointer-x) var(--north-pointer-y), rgba(75, 111, 255, 0.065), transparent 30%),
    linear-gradient(90deg, rgba(128, 216, 255, 0.012), transparent 30%, rgba(232, 196, 122, 0.018) 70%, transparent),
    var(--north-base);
}

.north-experience::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.008) 3px 4px);
  opacity: 0.28;
  mix-blend-mode: screen;
}

.north-ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.north-ambient__arc {
  position: absolute;
  width: 920px;
  height: 920px;
  border: 1px solid rgba(123, 136, 255, 0.09);
  border-radius: 50%;
}

.north-ambient__arc::before,
.north-ambient__arc::after {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.north-ambient__arc::before {
  inset: 12%;
  border: 1px solid rgba(232, 196, 122, 0.055);
}

.north-ambient__arc::after {
  inset: 27%;
  border: 1px dashed rgba(128, 216, 255, 0.06);
}

.north-ambient__arc--one {
  inset-block-start: -420px;
  inset-inline-end: -330px;
  animation: north-ambient-spin 80s linear infinite;
}

.north-ambient__arc--two {
  inset-block-end: -560px;
  inset-inline-start: -420px;
  animation: north-ambient-spin 95s linear infinite reverse;
}

.north-ambient__flare {
  position: absolute;
  inset-block-start: var(--north-pointer-y);
  inset-inline-start: var(--north-pointer-x);
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 111, 255, 0.105), rgba(75, 111, 255, 0.025) 34%, transparent 68%);
  filter: blur(16px);
  opacity: 0.82;
  transform: translate(-50%, -50%);
  transition: inset 700ms var(--north-ease);
}

.north-scroll-telemetry {
  position: fixed;
  inset-block: 50% auto;
  inset-inline-end: 14px;
  z-index: 90;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: rgba(170, 178, 200, 0.42);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  transform: translateY(-50%);
}

html[dir="rtl"] .north-scroll-telemetry {
  inset-inline: 14px auto;
}

.north-scroll-telemetry i {
  position: relative;
  display: block;
  width: 1px;
  height: 136px;
  overflow: hidden;
  background: rgba(123, 136, 255, 0.18);
}

.north-scroll-telemetry b {
  position: absolute;
  inset: 0 0 auto;
  display: block;
  height: calc(var(--north-scroll-progress) * 100%);
  background: linear-gradient(var(--north-gold), var(--north-cobalt), var(--north-glacier));
  box-shadow: 0 0 12px rgba(128, 216, 255, 0.6);
}

.north-header {
  height: 86px;
  border: 0;
}

.north-header__inner {
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  width: min(calc(100% - 36px), var(--north-cinematic-width));
  height: 62px;
  margin-block-start: 12px;
  padding-inline: 14px 10px;
  border: 1px solid transparent;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  transition:
    width 420ms var(--north-ease),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.north-header.is-scrolled {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.north-header.is-scrolled .north-header__inner {
  width: min(calc(100% - 52px), 1280px);
  border-color: rgba(123, 136, 255, 0.25);
  background: rgba(6, 8, 16, 0.78);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.44),
    inset 0 1px rgba(255, 255, 255, 0.055),
    0 0 34px rgba(75, 111, 255, 0.07);
  backdrop-filter: blur(24px) saturate(145%);
}

.north-brand__mark {
  width: 44px;
  height: 44px;
  border-color: rgba(232, 196, 122, 0.4);
  box-shadow: 0 0 30px rgba(75, 111, 255, 0.13), inset 0 0 18px rgba(123, 136, 255, 0.1);
  transition: transform 500ms var(--north-ease), box-shadow 500ms ease;
}

.north-brand:hover .north-brand__mark {
  box-shadow: 0 0 34px rgba(75, 111, 255, 0.24), inset 0 0 22px rgba(232, 196, 122, 0.11);
  transform: rotate(45deg) scale(1.06);
}

.north-brand__name {
  font-size: 11px;
  letter-spacing: 0;
}

.north-nav {
  gap: 30px;
}

.north-nav a {
  font-size: 11px;
}

.north-button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  --button-lift: 0px;
  min-height: 54px;
  isolation: isolate;
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + var(--button-lift)), 0);
  transition:
    transform 260ms var(--north-ease),
    box-shadow 320ms ease,
    filter 320ms ease;
}

.north-button::before {
  inset: 3px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.north-button > * {
  position: relative;
  z-index: 2;
}

.north-button:hover {
  --button-lift: -3px;
}

.north-button:active {
  --button-lift: 1px;
  filter: brightness(0.92);
}

.north-button--gold {
  border-color: #ffe2a5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(102deg, #9d7527 0%, #e4bb66 28%, #ffe1a2 52%, #c49536 100%);
  box-shadow:
    0 1px 0 #fff1c6 inset,
    0 -7px 14px rgba(83, 53, 8, 0.34) inset,
    0 9px 0 rgba(91, 61, 15, 0.66),
    0 17px 30px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(232, 196, 122, 0.16);
}

.north-button--gold:hover {
  box-shadow:
    0 1px 0 #fff7dc inset,
    0 -7px 14px rgba(83, 53, 8, 0.28) inset,
    0 8px 0 rgba(91, 61, 15, 0.62),
    0 22px 44px rgba(0, 0, 0, 0.44),
    0 0 54px rgba(232, 196, 122, 0.27),
    0 0 100px rgba(75, 111, 255, 0.09);
}

.north-button--gold::after {
  inset-inline-start: -82%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  filter: blur(1px);
  animation: north-button-sweep 5.8s 2.4s ease-in-out infinite;
}

.north-button--gold .north-button__spark {
  animation: north-star-breathe 2.8s ease-in-out infinite;
}

.north-button--glass {
  border-color: rgba(123, 136, 255, 0.4);
  background: linear-gradient(140deg, rgba(24, 33, 58, 0.68), rgba(7, 10, 20, 0.74));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.09),
    inset 0 -16px 28px rgba(0, 0, 0, 0.2),
    0 7px 0 rgba(5, 7, 14, 0.8),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.north-button--glass:hover {
  border-color: rgba(232, 196, 122, 0.58);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.12),
    inset 0 -16px 28px rgba(0, 0, 0, 0.16),
    0 7px 0 rgba(5, 7, 14, 0.76),
    0 20px 44px rgba(0, 0, 0, 0.32),
    0 0 38px rgba(75, 111, 255, 0.18);
}

.north-button--compact {
  min-height: 42px;
}

.north-hero {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  gap: 18px;
  width: min(calc(100% - 56px), var(--north-cinematic-width));
  min-height: 94svh;
  max-height: none;
  padding-block: 112px 42px;
  overflow: hidden;
  overflow: clip;
  contain: paint;
}

.north-hero::before {
  position: absolute;
  inset: 9% 1.5% 4%;
  z-index: -1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(123, 136, 255, 0.085);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
}

.north-hero::after {
  background: linear-gradient(90deg, transparent, rgba(232, 196, 122, 0.52), rgba(128, 216, 255, 0.42), transparent);
  box-shadow: 0 0 28px rgba(75, 111, 255, 0.12);
}

.north-hero__wordmark {
  position: absolute;
  inset-block-start: 96px;
  inset-inline: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: transparent;
  font-family: "PN Inter", sans-serif;
  line-height: 0.72;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.north-hero__wordmark span {
  margin-block-end: 18px;
  color: rgba(232, 196, 122, 0.24);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
}

.north-hero__wordmark strong {
  font-size: 186px;
  font-weight: 720;
  letter-spacing: 0;
  opacity: 0.55;
  -webkit-text-stroke: 1px rgba(123, 136, 255, 0.13);
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.north-hero__coordinates {
  position: absolute;
  inset-block-start: 132px;
  inset-inline-end: 18px;
  display: grid;
  grid-template-columns: auto 70px auto;
  gap: 12px;
  align-items: center;
  color: rgba(170, 178, 200, 0.4);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
}

.north-hero__coordinates i {
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 196, 122, 0.6), transparent);
}

html[dir="rtl"] .north-hero__coordinates i {
  background: linear-gradient(90deg, transparent, rgba(232, 196, 122, 0.6));
}

.north-hero__copy {
  grid-column: 1 / 6;
  grid-row: 1;
  align-self: center;
  max-width: 550px;
  margin-block-start: 92px;
}

.north-hero h1 {
  font-size: 84px;
  line-height: 0.9;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
}

html[dir="rtl"] .north-hero h1,
.north-experience[dir="rtl"] .north-hero h1 {
  font-size: 62px;
  line-height: 1.24;
}

.north-hero__statement {
  max-width: 520px;
  font-size: 38px;
}

html[dir="rtl"] .north-hero__statement,
.north-experience[dir="rtl"] .north-hero__statement {
  font-size: 31px;
}

.north-hero__body {
  max-width: 500px;
  font-size: 14px;
}

.north-hero__actions {
  gap: 16px;
  margin-block-start: 38px;
}

.north-hero-stage {
  grid-column: 5 / 13;
  grid-row: 1;
  align-self: center;
  height: 720px;
  margin-block-start: 34px;
  perspective: 1800px;
  will-change: transform;
}

.north-stage-glow {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 54%;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(128, 216, 255, 0.18), rgba(75, 111, 255, 0.08) 30%, rgba(123, 88, 255, 0.03) 52%, transparent 72%);
  filter: blur(10px);
  transform: translate(-50%, -50%);
  animation: north-glow-breathe 5.6s ease-in-out infinite;
}

.north-portal {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 54%;
  z-index: 0;
  width: 670px;
  height: 670px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.north-portal::before {
  position: absolute;
  inset: 2%;
  content: "";
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(232, 196, 122, 0.46) 0 0.55deg, transparent 0.55deg 6deg);
  mask-image: radial-gradient(circle, transparent 0 47%, black 47.2% 48%, transparent 48.2%);
  opacity: 0.42;
  animation: north-portal-spin 90s linear infinite;
}

.north-portal__ring {
  position: absolute;
  border-radius: 50%;
}

.north-portal__ring--one {
  inset: 5%;
  border: 1px solid rgba(123, 136, 255, 0.2);
  box-shadow: 0 0 48px rgba(75, 111, 255, 0.09) inset;
  animation: north-portal-spin 44s linear infinite;
}

.north-portal__ring--one::before,
.north-portal__ring--one::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: var(--north-glacier);
  box-shadow: 0 0 18px rgba(128, 216, 255, 0.9);
}

.north-portal__ring--one::before {
  inset-block-start: 15%;
  inset-inline-start: 15%;
  width: 6px;
  height: 6px;
}

.north-portal__ring--one::after {
  inset-block-end: 7%;
  inset-inline-end: 28%;
  width: 4px;
  height: 4px;
  background: var(--north-gold);
}

.north-portal__ring--two {
  inset: 15%;
  border: 1px dashed rgba(232, 196, 122, 0.2);
  animation: north-portal-spin 32s linear infinite reverse;
}

.north-portal__ring--three {
  inset: 28%;
  border: 1px solid rgba(128, 216, 255, 0.14);
  box-shadow:
    0 0 0 16px rgba(75, 111, 255, 0.018),
    0 0 46px rgba(75, 111, 255, 0.08) inset;
}

.north-portal__north,
.north-portal__bearing {
  position: absolute;
  z-index: 2;
  color: rgba(232, 196, 122, 0.75);
  font-family: "PN Inter", sans-serif;
  font-size: 9px;
  font-weight: 680;
}

.north-portal__north {
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
}

.north-portal__bearing {
  inset-block-end: 2%;
  inset-inline-start: 50%;
  color: rgba(128, 216, 255, 0.55);
  transform: translateX(-50%);
}

.north-portal__needle {
  position: absolute;
  inset-block-start: 7%;
  inset-inline-start: 50%;
  width: 1px;
  height: 43%;
  background: linear-gradient(var(--north-gold-pale), transparent);
  box-shadow: 0 0 15px rgba(232, 196, 122, 0.55);
  transform: translateX(-50%) rotate(var(--portal-angle, 0deg));
  transform-origin: 50% 100%;
  transition: transform 850ms var(--north-ease);
}

.north-stage-orbit {
  opacity: 0.7;
  animation: north-orbit-drift 24s ease-in-out infinite alternate;
}

.north-stage-orbit--outer {
  width: 760px;
  height: 760px;
}

.north-stage-orbit--inner {
  width: 520px;
  height: 520px;
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

.north-device {
  border-color: rgba(244, 241, 234, 0.3);
  box-shadow:
    0 55px 120px rgba(0, 0, 0, 0.7),
    0 0 0 4px rgba(11, 16, 32, 0.82),
    0 0 1px 1px rgba(232, 196, 122, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  backface-visibility: hidden;
}

.north-device--center {
  inset-inline-start: 54%;
  width: 340px;
  filter: saturate(1.05) brightness(1.06);
  animation: north-float-center 7s ease-in-out infinite;
}

.north-device--left {
  inset-inline-start: 17%;
  width: 270px;
  opacity: 0.7;
  filter: saturate(0.88) brightness(0.72);
  animation: north-float-left 9s ease-in-out infinite;
}

.north-device--right {
  inset-inline-start: 89%;
  width: 276px;
  opacity: 0.78;
  filter: saturate(0.9) brightness(0.76);
  animation: north-float-right 8.2s ease-in-out infinite;
}

html[dir="rtl"] .north-device--left {
  animation-name: north-float-left-rtl;
}

html[dir="rtl"] .north-device--right {
  animation-name: north-float-right-rtl;
}

.north-device__live {
  height: 2px;
  animation: north-live-scan 2.8s ease-in-out infinite;
}

.north-hero-stage__label {
  inset-inline-end: 4%;
  inset-block-end: 3%;
  padding: 8px 11px;
  border-inline-start: 1px solid rgba(77, 227, 161, 0.42);
  background: linear-gradient(90deg, rgba(77, 227, 161, 0.04), transparent);
}

.north-hero__signal {
  grid-column: 6 / 13;
  grid-row: 2;
  justify-content: flex-end;
  padding-inline-end: 52px;
}

.north-scroll-cue {
  position: absolute;
  inset-inline-start: 1.5%;
  inset-block-end: 22px;
  display: grid;
  grid-template-columns: auto 74px auto;
  gap: 9px;
  align-items: center;
  min-height: 44px;
  color: rgba(170, 178, 200, 0.42);
  font-size: 8px;
}

.north-scroll-cue i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(123, 136, 255, 0.24);
}

.north-scroll-cue b {
  position: absolute;
  inset-block: 0;
  inset-inline-start: -30%;
  width: 28%;
  background: var(--north-gold);
  box-shadow: 0 0 9px rgba(232, 196, 122, 0.8);
  animation: north-scan-line 2.3s ease-in-out infinite;
}

.north-section-heading {
  width: min(calc(100% - 56px), 1120px);
  text-align: start;
}

.north-section-heading h2,
.north-trust h2,
.north-bilingual h2,
.north-access h2,
.north-security h2 {
  font-size: 64px;
  line-height: 0.98;
}

html[dir="rtl"] .north-section-heading h2,
html[dir="rtl"] .north-trust h2,
html[dir="rtl"] .north-bilingual h2,
html[dir="rtl"] .north-access h2,
html[dir="rtl"] .north-security h2 {
  font-size: 46px;
  line-height: 1.4;
}

.north-section-heading > p:last-child {
  margin-inline: 0;
}

.north-atlas {
  --atlas-accent: 123, 136, 255;
  --atlas-story-x: 0px;
  --atlas-story-detail-x: 0px;
  --atlas-story-y: 0px;
  --atlas-story-rotation: 0deg;
  --atlas-wash-x: 0%;
  min-height: 1080px;
  padding-block: 170px 180px;
  overflow: hidden;
  border-block: 1px solid rgba(123, 136, 255, 0.1);
  background:
    radial-gradient(circle at 42% 58%, rgba(var(--atlas-accent), 0.085), transparent 32%),
    linear-gradient(180deg, rgba(17, 23, 42, 0.3), rgba(6, 8, 16, 0.2));
  transition: background 650ms ease;
}

.north-atlas::after {
  position: absolute;
  inset-block-start: 34%;
  inset-inline-start: calc(-18% + var(--atlas-wash-x));
  z-index: 0;
  width: 78%;
  height: 34%;
  content: "";
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(var(--atlas-accent), 0.07) 42%, rgba(232, 196, 122, 0.035), transparent 80%);
  clip-path: polygon(8% 0, 100% 22%, 88% 100%, 0 78%);
  filter: blur(1px);
  transition: inset-inline-start 160ms linear, background 650ms ease;
}

.north-atlas > .north-section-heading,
.north-atlas > .north-atlas__workspace {
  z-index: 1;
}

.north-atlas > .north-section-heading {
  position: relative;
}

.north-atlas__story-anchor {
  width: 100%;
  height: 0;
  pointer-events: none;
}

.north-atlas::before {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, rgba(232, 196, 122, 0.3) 22%, rgba(75, 111, 255, 0.24) 76%, transparent);
  opacity: 0.55;
}

.north-atlas__workspace {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(300px, 390px);
  grid-template-rows: auto 740px;
  grid-template-areas:
    "rail rail"
    "visual detail";
  gap: 34px 70px;
  width: min(calc(100% - 56px), 1320px);
  min-height: 0;
  margin-block-start: 76px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  backdrop-filter: none;
}

.north-atlas__workspace::after {
  position: absolute;
  inset: 96px -8% -5%;
  z-index: -2;
  content: "";
  pointer-events: none;
  border-block: 1px solid rgba(var(--atlas-accent), 0.08);
  background: linear-gradient(112deg, transparent 12%, rgba(var(--atlas-accent), 0.045) 48%, transparent 82%);
  clip-path: polygon(4% 0, 100% 9%, 93% 100%, 0 88%);
  transition: background 650ms ease;
}

.north-atlas__workspace::before {
  position: absolute;
  inset-block-start: 112px;
  inset-inline-start: -24px;
  z-index: 0;
  content: attr(data-active-index);
  color: transparent;
  font-family: "PN Display", serif;
  font-size: 270px;
  font-weight: 540;
  line-height: 1;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(var(--atlas-accent), 0.11);
  transition: -webkit-text-stroke-color 500ms ease;
}

.north-atlas__workspace[data-active-module="overview"] { --atlas-accent: 232, 196, 122; }
.north-atlas__workspace[data-active-module="intelligence"] { --atlas-accent: 128, 216, 255; }
.north-atlas__workspace[data-active-module="scenarios"] { --atlas-accent: 157, 114, 255; }
.north-atlas__workspace[data-active-module="signals"] { --atlas-accent: 255, 112, 122; }
.north-atlas__workspace[data-active-module="decisions"] { --atlas-accent: 77, 227, 161; }
.north-atlas__workspace[data-active-module="tracking"] { --atlas-accent: 232, 196, 122; }
.north-atlas__workspace[data-active-module="account"] { --atlas-accent: 170, 178, 200; }

.north-atlas__rail {
  position: relative;
  z-index: 5;
  grid-area: rail;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 4px;
  padding: 10px 0 15px;
  border: 0;
  border-block: 1px solid rgba(123, 136, 255, 0.14);
  background: transparent;
}

.north-module-tab {
  grid-template-columns: 1fr;
  grid-template-rows: 50px auto;
  gap: 9px;
  place-items: center;
  min-height: 84px;
  padding: 7px 5px;
  color: rgba(170, 178, 200, 0.55);
  text-align: center;
  background: transparent;
  font-size: 10px;
}

.north-module-tab + .north-module-tab {
  margin: 0;
}

.north-module-tab::after {
  inset: auto 16% -16px;
  width: auto;
  height: 2px;
}

.north-module-tab__icon {
  width: 46px;
  height: 46px;
  border-color: rgba(123, 136, 255, 0.22);
  background: linear-gradient(145deg, rgba(24, 33, 58, 0.8), rgba(7, 10, 20, 0.82));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(45deg) scale(0.72);
}

.north-module-tab:hover,
.north-module-tab.is-active,
html[dir="rtl"] .north-module-tab:hover,
html[dir="rtl"] .north-module-tab.is-active {
  border-color: transparent;
  background: radial-gradient(circle at 50% 40%, rgba(var(--atlas-accent), 0.13), transparent 64%);
  transform: translateY(-4px);
}

.north-module-tab.is-active .north-module-tab__icon {
  border-color: rgba(var(--atlas-accent), 0.8);
  box-shadow:
    0 0 28px rgba(var(--atlas-accent), 0.28),
    0 12px 34px rgba(0, 0, 0, 0.36),
    inset 0 0 24px rgba(var(--atlas-accent), 0.14);
  transform: rotate(45deg) scale(0.9);
}

.north-module-tab.is-active::after {
  background: rgb(var(--atlas-accent));
  box-shadow: 0 0 16px rgba(var(--atlas-accent), 0.75);
}

.north-atlas__visual {
  grid-area: visual;
  min-height: 740px;
  overflow: visible;
  background: transparent;
  perspective: 1500px;
  translate: var(--atlas-story-x) var(--atlas-story-y);
  rotate: var(--atlas-story-rotation);
  transition: translate 120ms linear, rotate 120ms linear;
  will-change: translate, rotate;
}

.north-atlas__visual::before {
  width: 620px;
  height: 620px;
  border-color: rgba(var(--atlas-accent), 0.2);
  box-shadow:
    0 0 0 84px rgba(var(--atlas-accent), 0.024),
    0 0 0 168px rgba(var(--atlas-accent), 0.012),
    0 0 120px rgba(var(--atlas-accent), 0.08) inset;
  transition: border-color 500ms ease, box-shadow 500ms ease;
}

.north-atlas__visual::after {
  inset-block: 1%;
  background: linear-gradient(transparent, rgba(var(--atlas-accent), 0.34), rgba(232, 196, 122, 0.3), transparent);
}

.north-atlas__halo {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(-8deg);
  transform-style: preserve-3d;
}

.north-atlas__halo i {
  position: absolute;
  border: 1px dashed rgba(var(--atlas-accent), 0.2);
  border-radius: 50%;
  animation: north-portal-spin 36s linear infinite;
}

.north-atlas__halo i:nth-child(1) { inset: 0; }
.north-atlas__halo i:nth-child(2) { inset: 12%; animation-direction: reverse; animation-duration: 26s; }
.north-atlas__halo i:nth-child(3) { inset: 27%; border-style: solid; animation-duration: 18s; }

.north-atlas__device {
  width: 340px;
  border-color: rgba(var(--atlas-accent), 0.36);
  box-shadow:
    0 62px 110px rgba(0, 0, 0, 0.64),
    0 0 0 5px rgba(11, 16, 32, 0.88),
    0 0 85px rgba(var(--atlas-accent), 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  transform: rotateY(-4deg) rotateX(1deg) translateZ(18px);
  transition: border-color 500ms ease, box-shadow 500ms ease, transform 700ms var(--north-ease);
}

html[dir="rtl"] .north-atlas__device {
  transform: rotateY(4deg) rotateX(1deg) translateZ(18px);
}

.north-atlas__device:hover {
  transform: rotateY(0) rotateX(0) translateZ(34px) translateY(-8px);
}

.north-atlas__device img {
  transition: opacity 300ms ease, transform 650ms var(--north-ease), filter 500ms ease;
}

.north-atlas__device img.is-switching {
  opacity: 0;
  filter: blur(5px) brightness(1.3);
  transform: scale(0.94) rotateY(8deg);
}

.north-atlas__reflection {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: 18px;
  width: 360px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(var(--atlas-accent), 0.23), transparent 66%);
  filter: blur(8px);
  transform: translateX(-50%);
  transition: background 500ms ease;
}

.north-atlas__beam {
  inset-block-end: 8%;
  width: 320px;
  background: linear-gradient(90deg, transparent, rgb(var(--atlas-accent)), var(--north-gold), transparent);
  box-shadow: 0 0 34px rgba(var(--atlas-accent), 0.64);
}

.north-atlas__coordinates {
  inset: 22px 28px auto;
  color: rgba(var(--atlas-accent), 0.5);
}

.north-atlas__detail {
  position: relative;
  z-index: 4;
  grid-area: detail;
  align-self: center;
  min-height: 480px;
  padding: 50px 0 50px 44px;
  border: 0;
  border-inline-start: 1px solid rgba(var(--atlas-accent), 0.25);
  background: transparent;
  translate: var(--atlas-story-detail-x) 0;
  transition: border-color 500ms ease, translate 120ms linear;
  will-change: translate;
}

html[dir="rtl"] .north-atlas__detail {
  padding: 50px 44px 50px 0;
}

.north-atlas__index {
  grid-template-columns: auto minmax(80px, 1fr) auto;
  font-size: 11px;
}

.north-atlas__index i {
  position: relative;
  overflow: hidden;
  background: rgba(123, 136, 255, 0.18);
}

.north-atlas__index i b {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 38%;
  background: rgb(var(--atlas-accent));
  box-shadow: 0 0 12px rgba(var(--atlas-accent), 0.7);
  animation: north-index-scan 2.6s ease-in-out infinite alternate;
}

.north-atlas__label {
  margin-block-start: 52px;
  color: rgb(var(--atlas-accent));
}

.north-atlas__detail h3 {
  font-size: 50px;
}

html[dir="rtl"] .north-atlas__detail h3 {
  font-size: 38px;
}

.north-atlas__detail > p:not(.north-atlas__label, .north-atlas__sample) {
  min-height: 92px;
  font-size: 15px;
}

.north-atlas__metric {
  border-color: rgba(var(--atlas-accent), 0.24);
  background: linear-gradient(90deg, rgba(var(--atlas-accent), 0.08), transparent);
}

.north-atlas__progress span.is-active {
  background: rgb(var(--atlas-accent));
  box-shadow: 0 0 12px rgba(var(--atlas-accent), 0.8);
}

.north-atlas__constellation {
  position: absolute;
  inset: 90px -4% 0;
  z-index: 0;
  pointer-events: none;
}

.north-atlas__constellation span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(var(--atlas-accent));
  box-shadow: 0 0 18px rgba(var(--atlas-accent), 0.74);
  transition: background 500ms ease, box-shadow 500ms ease;
}

.north-atlas__constellation span:nth-child(1) { inset: 11% auto auto 15%; }
.north-atlas__constellation span:nth-child(2) { inset: 24% 4% auto auto; }
.north-atlas__constellation span:nth-child(3) { inset: 58% auto auto 3%; }
.north-atlas__constellation span:nth-child(4) { inset: auto 17% 9% auto; }
.north-atlas__constellation span:nth-child(5) { inset: 43% 38% auto auto; width: 3px; height: 3px; }

.north-loop {
  min-height: 820px;
  padding-block: 180px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(75, 111, 255, 0.09), transparent 27%),
    linear-gradient(100deg, rgba(77, 227, 161, 0.025), transparent 32%),
    linear-gradient(280deg, rgba(255, 112, 122, 0.025), transparent 34%),
    rgba(11, 16, 32, 0.25);
}

.north-loop::before {
  position: absolute;
  inset-block-start: 49%;
  inset-inline-start: 50%;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(123, 136, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 92px rgba(123, 136, 255, 0.018),
    0 0 0 184px rgba(123, 136, 255, 0.01);
  transform: translate(-50%, -50%);
}

.north-loop__track {
  gap: 58px;
  margin-block-start: 110px;
}

.north-loop__line {
  inset-inline: 2%;
  inset-block-start: 73px;
  background: rgba(123, 136, 255, 0.26);
}

.north-loop__line::before,
.north-loop__line::after {
  position: absolute;
  inset-block-start: 50%;
  width: 9px;
  height: 9px;
  content: "";
  border: 1px solid var(--north-gold);
  background: var(--north-surface-1);
  transform: translateY(-50%) rotate(45deg);
}

.north-loop__line::before { inset-inline-start: 0; }
.north-loop__line::after { inset-inline-end: 0; }

.north-loop__line span {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--north-gold-pale);
  background: var(--north-gold);
  box-shadow: 0 0 24px rgba(232, 196, 122, 0.78), 0 0 48px rgba(75, 111, 255, 0.4);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
}

.north-loop__track.is-visible .north-loop__line span {
  opacity: 1;
  animation: north-decision-travel 5.6s var(--north-ease) infinite 1.1s;
}

.north-loop-step {
  padding-inline-end: 12px;
}

.north-loop-step:nth-of-type(even) {
  transform: translateY(64px);
}

.north-loop-step__number {
  margin-block-end: 30px;
  color: rgba(232, 196, 122, 0.6);
}

.north-loop-step__mark {
  width: 22px;
  height: 22px;
  margin-block-end: 38px;
  box-shadow: 0 0 0 11px rgba(11, 16, 32, 0.92), 0 0 28px rgba(232, 196, 122, 0.22);
}

.north-loop__track.is-visible .north-loop-step__mark {
  box-shadow: 0 0 0 11px rgba(11, 16, 32, 0.92), 0 0 36px rgba(232, 196, 122, 0.55);
}

.north-loop-step h3 {
  font-size: 36px;
}

.north-loop-step p {
  max-width: 265px;
}

.north-trust {
  grid-template-columns: minmax(520px, 1.12fr) minmax(380px, 0.88fr);
  gap: 88px;
  width: min(calc(100% - 56px), 1260px);
  min-height: 940px;
  padding-block: 170px;
}

.north-trust__visual {
  min-height: 730px;
  perspective: 1500px;
}

.north-trust__device {
  width: 350px;
  border-color: rgba(128, 216, 255, 0.28);
  box-shadow:
    0 58px 118px rgba(0, 0, 0, 0.68),
    0 0 0 5px rgba(17, 23, 42, 0.88),
    0 0 95px rgba(75, 111, 255, 0.17);
  transform: rotateY(7deg) rotateZ(-1deg) translateZ(20px);
  animation: north-trust-float 8s ease-in-out infinite;
}

html[dir="rtl"] .north-trust__device {
  transform: rotateY(-7deg) rotateZ(1deg) translateZ(20px);
  animation-name: north-trust-float-rtl;
}

.north-evidence-orbit {
  width: 650px;
  height: 650px;
  border-color: rgba(123, 136, 255, 0.18);
  animation: north-portal-spin 60s linear infinite;
}

.north-evidence-orbit::before {
  border-style: dashed;
  animation: north-portal-spin 34s linear infinite reverse;
}

.north-evidence-orbit span {
  animation: north-node-pulse 2.8s ease-in-out infinite alternate;
}

.north-evidence-orbit span:nth-child(2) { animation-delay: -0.7s; }
.north-evidence-orbit span:nth-child(3) { animation-delay: -1.4s; }
.north-evidence-orbit span:nth-child(4) { animation-delay: -2.1s; }

.north-trust__beam {
  position: absolute;
  inset-block: 4% 4%;
  inset-inline-start: 50%;
  z-index: 1;
  width: 1px;
  overflow: hidden;
  background: linear-gradient(transparent, rgba(128, 216, 255, 0.3), rgba(232, 196, 122, 0.3), transparent);
}

.north-trust__beam i {
  position: absolute;
  inset-inline: 0;
  inset-block-start: -15%;
  height: 18%;
  background: linear-gradient(transparent, var(--north-gold-pale), transparent);
  box-shadow: 0 0 18px rgba(232, 196, 122, 0.8);
  animation: north-beam-drop 4s ease-in-out infinite;
}

.north-proof-grid {
  gap: 0 28px;
  margin-block-start: 46px;
  border: 0;
  background: transparent;
  clip-path: none;
}

.north-proof-grid div {
  min-height: 106px;
  padding: 22px 4px;
  border-block-start: 1px solid rgba(123, 136, 255, 0.2);
  background: linear-gradient(90deg, rgba(75, 111, 255, 0.04), transparent);
}

.north-proof-grid dd {
  color: var(--north-gold-pale);
}

.north-bilingual {
  position: relative;
  grid-template-columns: minmax(350px, 0.72fr) minmax(650px, 1.28fr);
  gap: 72px;
  width: min(calc(100% - 56px), 1320px);
  min-height: 930px;
  padding-block: 160px;
  overflow: visible;
}

.north-bilingual__visual {
  min-height: 730px;
}

.north-bilingual__monogram {
  position: absolute;
  inset: 2% 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  color: transparent;
  font-family: "PN Inter", sans-serif;
  font-size: 150px;
  font-weight: 750;
  text-align: center;
  -webkit-text-stroke: 1px rgba(123, 136, 255, 0.1);
}

.north-bilingual__monogram i {
  height: 78%;
  background: linear-gradient(transparent, rgba(232, 196, 122, 0.36), rgba(75, 111, 255, 0.34), transparent);
}

.north-bilingual__screen {
  width: min(100%, 310px);
  border-color: rgba(244, 241, 234, 0.26);
  box-shadow:
    0 52px 110px rgba(0, 0, 0, 0.66),
    0 0 0 5px rgba(17, 23, 42, 0.84),
    0 0 64px rgba(75, 111, 255, 0.12);
}

.north-bilingual__screen--en {
  transform: rotateY(12deg) translateY(-24px) translateZ(12px);
  animation: north-bilingual-en 8s ease-in-out infinite;
}

.north-bilingual__screen--ar {
  transform: rotateY(-12deg) translateY(28px) translateZ(12px);
  animation: north-bilingual-ar 8s ease-in-out infinite -4s;
}

.north-bilingual__axis {
  z-index: 3;
  height: 84%;
  box-shadow: 0 0 24px rgba(75, 111, 255, 0.2);
}

.north-bilingual__axis i {
  width: 22px;
  height: 22px;
  box-shadow: 0 0 28px rgba(232, 196, 122, 0.46);
  animation: north-axis-pulse 3s ease-in-out infinite;
}

.north-security {
  position: relative;
  min-height: 900px;
  padding-block: 170px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 63%, rgba(75, 111, 255, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(17, 23, 42, 0.48), rgba(6, 8, 16, 0.34));
}

.north-security__grid {
  position: relative;
  display: block;
  width: min(calc(100% - 56px), 1120px);
  height: 620px;
  margin-block-start: 70px;
  border: 0;
  background: transparent;
}

.north-security__grid::before,
.north-security__grid::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.north-security__grid::before {
  width: 1px;
  height: 78%;
  background: linear-gradient(transparent, rgba(232, 196, 122, 0.34), rgba(75, 111, 255, 0.3), transparent);
}

.north-security__grid::after {
  width: 78%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 111, 255, 0.3), rgba(232, 196, 122, 0.34), transparent);
}

.north-security__core {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  z-index: 3;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(232, 196, 122, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 33, 58, 0.94), rgba(6, 8, 16, 0.96));
  box-shadow:
    0 0 0 26px rgba(123, 136, 255, 0.025),
    0 0 0 72px rgba(123, 136, 255, 0.016),
    0 0 80px rgba(75, 111, 255, 0.2),
    inset 0 0 42px rgba(75, 111, 255, 0.1);
  transform: translate(-50%, -50%);
}

.north-security__core::before,
.north-security__core::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(123, 136, 255, 0.2);
  border-radius: 50%;
  animation: north-portal-spin 36s linear infinite;
}

.north-security__core::before { inset: -42px; }
.north-security__core::after { inset: -91px; animation-direction: reverse; animation-duration: 52s; }

.north-security__core .north-star {
  width: 38px;
  height: 38px;
  animation: north-star-breathe 2.8s ease-in-out infinite;
}

.north-security__core i {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(232, 196, 122, 0.16);
  transform: rotate(45deg);
}

.north-security-item {
  position: absolute;
  display: grid;
  grid-template-columns: 54px 1px 1fr;
  width: 355px;
  min-height: 132px;
  padding: 22px 8px;
  border-block-start: 1px solid rgba(123, 136, 255, 0.23);
  background: linear-gradient(90deg, rgba(75, 111, 255, 0.045), transparent);
}

.north-security-item:nth-of-type(1) { inset: 44px auto auto 0; }
.north-security-item:nth-of-type(2) { inset: 44px 0 auto auto; }
.north-security-item:nth-of-type(3) { inset: auto auto 34px 0; }
.north-security-item:nth-of-type(4) { inset: auto 0 34px auto; }

.north-security-item__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, rgba(24, 33, 58, 0.82), rgba(7, 10, 20, 0.9));
  box-shadow: 0 0 30px rgba(75, 111, 255, 0.1), inset 0 0 20px rgba(75, 111, 255, 0.09);
}

.north-security-item:hover .north-security-item__icon {
  border-color: var(--north-gold-pale);
  box-shadow: 0 0 36px rgba(232, 196, 122, 0.23), inset 0 0 24px rgba(75, 111, 255, 0.12);
}

.north-access {
  position: relative;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: 100px;
  width: min(calc(100% - 56px), 1240px);
  min-height: 900px;
  padding-block: 170px;
  perspective: 1500px;
}

.north-access__portal {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 21%;
  z-index: -1;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(123, 136, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 78px rgba(123, 136, 255, 0.017),
    0 0 0 156px rgba(123, 136, 255, 0.009);
  transform: translate(-50%, -50%);
  animation: north-portal-spin 70s linear infinite;
}

.north-access__portal span {
  position: absolute;
  border-radius: 50%;
}

.north-access__portal span:nth-child(1) {
  inset: 16%;
  border: 1px dashed rgba(232, 196, 122, 0.18);
}

.north-access__portal span:nth-child(2) {
  inset: 34%;
  border: 1px solid rgba(128, 216, 255, 0.16);
}

.north-access__portal i {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 25px;
  height: 25px;
  background: var(--north-gold-pale);
  box-shadow: 0 0 38px rgba(232, 196, 122, 0.54);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  transform: translate(-50%, -50%);
}

.north-access__copy,
.north-access-form {
  position: relative;
  z-index: 2;
}

.north-access__copy .north-star {
  width: 34px;
  height: 34px;
  animation: north-star-breathe 3s ease-in-out infinite;
}

.north-access-form {
  padding: 44px;
  border-color: rgba(123, 136, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(24, 33, 58, 0.68), rgba(6, 8, 16, 0.88) 64%),
    var(--north-surface-1);
  box-shadow:
    0 62px 120px rgba(0, 0, 0, 0.46),
    0 0 80px rgba(75, 111, 255, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.065);
  transform: rotateY(-2deg) translateZ(10px);
  backdrop-filter: blur(22px) saturate(125%);
}

.north-access-form::before {
  animation: north-form-trace 4.8s ease-in-out infinite alternate;
}

.north-access-form::after {
  animation: north-form-trace 4.8s 700ms ease-in-out infinite alternate;
}

html[dir="rtl"] .north-access-form {
  transform: rotateY(2deg) translateZ(10px);
}

.north-access-form input[type="text"],
.north-access-form input[type="email"],
.north-access-form textarea {
  min-height: 54px;
  border-color: rgba(123, 136, 255, 0.28);
  background: linear-gradient(135deg, rgba(6, 8, 16, 0.76), rgba(17, 23, 42, 0.5));
  box-shadow: inset 0 9px 24px rgba(0, 0, 0, 0.18), 0 1px rgba(255, 255, 255, 0.025);
}

.north-access-form input:hover,
.north-access-form textarea:hover,
.north-access-form input:focus,
.north-access-form textarea:focus {
  border-color: rgba(232, 196, 122, 0.58);
  box-shadow:
    inset 0 9px 24px rgba(0, 0, 0, 0.16),
    0 0 26px rgba(75, 111, 255, 0.13),
    0 0 1px rgba(232, 196, 122, 0.8);
}

.north-button--submit {
  min-height: 58px;
  margin-block-start: 32px;
}

[data-reveal] {
  filter: blur(4px);
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 900ms var(--north-ease),
    filter 700ms ease;
}

[data-reveal].is-visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@keyframes north-ambient-spin {
  to { transform: rotate(360deg); }
}

@keyframes north-arrival-exit {
  0%, 68% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes north-arrival-horizon {
  0% { opacity: 0; transform: scaleX(0); }
  34% { opacity: 1; transform: scaleX(0.18); }
  100% { opacity: 0.32; transform: scaleX(1); }
}

@keyframes north-arrival-meridian {
  0% { opacity: 0; transform: scaleY(0); }
  100% { opacity: 1; transform: scaleY(1); }
}

@keyframes north-arrival-compass {
  0% { opacity: 0; transform: scale(0.44) rotate(-28deg); }
  58% { opacity: 1; transform: scale(1.06) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes north-arrival-star {
  0% { opacity: 0; transform: scale(0.25) rotate(-35deg); }
  65% { opacity: 1; transform: scale(1.16) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes north-arrival-copy {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes north-button-sweep {
  0%, 67% { inset-inline-start: -82%; opacity: 0; }
  74% { opacity: 0.9; }
  88%, 100% { inset-inline-start: 132%; opacity: 0; }
}

@keyframes north-form-trace {
  0% { width: 56px; opacity: 0.45; }
  100% { width: 156px; opacity: 1; }
}

@keyframes north-portal-spin {
  to { transform: rotate(360deg); }
}

@keyframes north-orbit-drift {
  0% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(-12deg); }
  100% { transform: translate(-50%, -50%) rotateX(67deg) rotateZ(8deg); }
}

@keyframes north-glow-breathe {
  0%, 100% { opacity: 0.56; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 0.92; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes north-float-center {
  0%, 100% { transform: translate(-50%, -50%) translateZ(100px) rotateY(-2deg) translateY(0); }
  50% { transform: translate(-50%, -50%) translateZ(112px) rotateY(1deg) translateY(-10px); }
}

@keyframes north-float-left {
  0%, 100% { transform: translate(-50%, -47%) translateZ(-65px) rotateY(20deg) rotateZ(-4deg) translateY(0); }
  50% { transform: translate(-50%, -47%) translateZ(-50px) rotateY(17deg) rotateZ(-2deg) translateY(11px); }
}

@keyframes north-float-right {
  0%, 100% { transform: translate(-50%, -48%) translateZ(-36px) rotateY(-20deg) rotateZ(4deg) translateY(0); }
  50% { transform: translate(-50%, -48%) translateZ(-24px) rotateY(-17deg) rotateZ(2deg) translateY(-9px); }
}

@keyframes north-float-left-rtl {
  0%, 100% { transform: translate(-50%, -47%) translateZ(-65px) rotateY(-20deg) rotateZ(4deg) translateY(0); }
  50% { transform: translate(-50%, -47%) translateZ(-50px) rotateY(-17deg) rotateZ(2deg) translateY(11px); }
}

@keyframes north-float-right-rtl {
  0%, 100% { transform: translate(-50%, -48%) translateZ(-36px) rotateY(20deg) rotateZ(-4deg) translateY(0); }
  50% { transform: translate(-50%, -48%) translateZ(-24px) rotateY(17deg) rotateZ(-2deg) translateY(-9px); }
}

@keyframes north-live-scan {
  0%, 100% { opacity: 0.42; transform: scaleX(0.55); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes north-scan-line {
  0% { inset-inline-start: -30%; }
  100% { inset-inline-start: 104%; }
}

@keyframes north-index-scan {
  0% { width: 18%; }
  100% { width: 72%; }
}

@keyframes north-decision-travel {
  0% { inset-inline-start: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { inset-inline-start: 100%; opacity: 0; }
}

@keyframes north-trust-float {
  0%, 100% { transform: rotateY(7deg) rotateZ(-1deg) translateZ(20px) translateY(0); }
  50% { transform: rotateY(3deg) rotateZ(0) translateZ(34px) translateY(-10px); }
}

@keyframes north-trust-float-rtl {
  0%, 100% { transform: rotateY(-7deg) rotateZ(1deg) translateZ(20px) translateY(0); }
  50% { transform: rotateY(-3deg) rotateZ(0) translateZ(34px) translateY(-10px); }
}

@keyframes north-node-pulse {
  to { transform: scale(1.7); opacity: 0.55; }
}

@keyframes north-beam-drop {
  0% { inset-block-start: -18%; opacity: 0; }
  15%, 80% { opacity: 1; }
  100% { inset-block-start: 104%; opacity: 0; }
}

@keyframes north-bilingual-en {
  0%, 100% { transform: rotateY(12deg) translateY(-24px) translateZ(12px); }
  50% { transform: rotateY(7deg) translateY(-34px) translateZ(28px); }
}

@keyframes north-bilingual-ar {
  0%, 100% { transform: rotateY(-12deg) translateY(28px) translateZ(12px); }
  50% { transform: rotateY(-7deg) translateY(18px) translateZ(28px); }
}

@keyframes north-axis-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(232, 196, 122, 0.3); transform: translate(-50%, -50%) rotate(45deg) scale(0.9); }
  50% { box-shadow: 0 0 42px rgba(232, 196, 122, 0.65), 0 0 70px rgba(75, 111, 255, 0.25); transform: translate(-50%, -50%) rotate(45deg) scale(1.1); }
}

@keyframes north-star-breathe {
  0%, 100% { filter: brightness(0.86); transform: scale(0.9); }
  50% { filter: brightness(1.2); transform: scale(1.13); }
}

@media (min-width: 961px) and (min-height: 720px) and (prefers-reduced-motion: no-preference) {
  .north-atlas {
    min-height: 430svh;
    padding-block: 170px 120px;
    overflow: clip;
  }

  .north-atlas__workspace {
    position: sticky;
    inset-block-start: 96px;
    grid-template-rows: auto minmax(0, 1fr);
    height: calc(100svh - 116px);
    min-height: 670px;
    max-height: 900px;
  }

  .north-atlas__visual {
    min-height: 0;
  }

  .north-atlas__device {
    width: min(320px, calc((100svh - 250px) * 0.49));
  }
}

@media (max-width: 1180px) {
  .north-hero__wordmark strong { font-size: 138px; }
  .north-hero h1 { font-size: 68px; }
  html[dir="rtl"] .north-hero h1,
  .north-experience[dir="rtl"] .north-hero h1 { font-size: 52px; }
  .north-hero__statement { font-size: 32px; }
  .north-hero-stage { height: 650px; }
  .north-portal { width: 580px; height: 580px; }
  .north-stage-orbit--outer { width: 630px; height: 630px; }
  .north-device--center { width: 300px; }
  .north-device--left,
  .north-device--right { width: 230px; }
  .north-atlas__workspace { gap-inline: 44px; }
  .north-atlas__detail { padding-inline-start: 30px; }
  html[dir="rtl"] .north-atlas__detail { padding-inline: 30px 0; }
  .north-bilingual { grid-template-columns: minmax(320px, 0.7fr) minmax(560px, 1.3fr); }
  .north-bilingual__screen { width: 270px; }
  .north-security-item { width: 310px; }
}

@media (max-width: 960px) {
  .north-scroll-telemetry { display: none; }
  .north-header { height: 76px; }
  .north-header__inner,
  .north-header.is-scrolled .north-header__inner {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    height: 56px;
    margin-block-start: 10px;
  }
  .north-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 650px auto;
    width: min(calc(100% - 36px), 760px);
    min-height: 1240px;
    padding-block: 126px 54px;
  }
  .north-hero__wordmark { inset-block-start: 92px; }
  .north-hero__wordmark strong { font-size: 98px; }
  .north-hero__coordinates { display: none; }
  .north-hero__copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 620px;
    margin: 86px auto 0;
    text-align: center;
  }
  .north-hero-stage {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 630px;
    margin: 0;
  }
  .north-hero__signal {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
    padding: 0;
  }
  .north-scroll-cue { display: none; }
  .north-atlas__workspace {
    grid-template-columns: 1fr;
    grid-template-rows: auto 690px auto;
    grid-template-areas: "rail" "visual" "detail";
    width: min(calc(100% - 36px), 760px);
  }
  .north-atlas__rail { grid-template-columns: repeat(4, 1fr); gap: 12px 4px; }
  .north-atlas__visual { min-height: 690px; }
  .north-atlas__detail,
  html[dir="rtl"] .north-atlas__detail {
    min-height: 0;
    padding: 48px 0 0;
    border-inline-start: 0;
    border-block-start: 1px solid rgba(var(--atlas-accent), 0.24);
  }
  .north-atlas__workspace::before { inset-block-start: 230px; font-size: 220px; }
  .north-trust,
  .north-bilingual,
  .north-access {
    grid-template-columns: 1fr;
    width: min(calc(100% - 36px), 760px);
  }
  .north-trust__content,
  .north-bilingual__content,
  .north-access__copy {
    width: 100%;
    min-width: 0;
  }
  .north-security__grid { width: min(calc(100% - 36px), 760px); height: 720px; }
  .north-security-item { width: 285px; }
  .north-access__portal { inset-inline-start: 50%; opacity: 0.42; }
}

@media (max-width: 700px) {
  .north-ambient__arc { width: 620px; height: 620px; }
  .north-ambient__flare { width: 280px; height: 280px; }
  .north-header__inner,
  .north-header.is-scrolled .north-header__inner { padding-inline: 9px 7px; }
  .north-brand__mark { width: 38px; height: 38px; }
  .north-hero {
    grid-template-rows: auto 540px auto;
    width: calc(100% - 24px);
    min-height: 1100px;
    padding-block-start: 108px;
  }
  .north-hero::before { inset-inline: 0; }
  .north-hero__wordmark { inset-block-start: 84px; }
  .north-hero__wordmark span { margin-block-end: 12px; font-size: 8px; letter-spacing: 0; }
  .north-hero__wordmark strong { font-size: 60px; }
  .north-hero__copy { margin-block-start: 68px; }
  .north-hero h1 { font-size: 50px; }
  html[dir="rtl"] .north-hero h1,
  .north-experience[dir="rtl"] .north-hero h1 { font-size: 42px; }
  .north-hero__statement { font-size: 27px; }
  html[dir="rtl"] .north-hero__statement,
  .north-experience[dir="rtl"] .north-hero__statement { font-size: 25px; }
  .north-hero-stage { height: 530px; }
  .north-portal { width: 440px; height: 440px; inset-inline-start: 50%; }
  .north-stage-glow { width: 390px; height: 390px; inset-inline-start: 50%; }
  .north-stage-orbit--outer { width: 480px; height: 480px; }
  .north-stage-orbit--inner { width: 340px; height: 340px; }
  .north-device--center { inset-inline-start: 50%; width: 242px; }
  .north-device--left { inset-inline-start: 0; width: 178px; opacity: 0.36; }
  .north-device--right { inset-inline-start: 100%; width: 178px; opacity: 0.36; }
  .north-hero-stage__label { inset-inline: 0; justify-content: center; }
  .north-section-heading,
  .north-atlas__workspace,
  .north-loop__inner,
  .north-trust,
  .north-bilingual,
  .north-security > *,
  .north-access,
  .north-footer__inner { width: calc(100% - 28px); }
  .north-section-heading { text-align: center; }
  .north-section-heading h2,
  .north-trust h2,
  .north-bilingual h2,
  .north-access h2,
  .north-security h2 { font-size: 40px; }
  html[dir="rtl"] .north-section-heading h2,
  html[dir="rtl"] .north-trust h2,
  html[dir="rtl"] .north-bilingual h2,
  html[dir="rtl"] .north-access h2,
  html[dir="rtl"] .north-security h2 { font-size: 33px; }
  .north-section-heading > p:last-child { margin-inline: auto; }
  .north-atlas { min-height: 0; padding-block: 116px 126px; }
  .north-atlas__workspace {
    grid-template-rows: auto 590px auto;
    margin-block-start: 54px;
  }
  .north-atlas__rail { gap: 8px 2px; padding-block: 8px 14px; }
  .north-module-tab { grid-template-rows: 45px; min-height: 58px; }
  .north-module-tab > span:last-child { display: none; }
  .north-module-tab__icon { width: 40px; height: 40px; }
  .north-module-tab::after { inset-block-end: -15px; }
  .north-atlas__visual { min-height: 590px; }
  .north-atlas__visual::before { width: 430px; height: 430px; }
  .north-atlas__halo { width: 410px; height: 410px; }
  .north-atlas__device { width: 250px; }
  .north-atlas__reflection { width: 270px; }
  .north-atlas__workspace::before { inset-block-start: 192px; font-size: 150px; }
  .north-atlas__detail h3 { font-size: 40px; }
  html[dir="rtl"] .north-atlas__detail h3 { font-size: 32px; }
  .north-loop { min-height: 0; padding-block: 120px; }
  .north-loop::before { width: 390px; height: 390px; }
  .north-loop__track { margin-block-start: 66px; }
  .north-loop-step:nth-of-type(even) { transform: none; }
  .north-trust { min-height: 0; padding-block: 120px; }
  .north-trust__visual { min-height: 610px; }
  .north-trust__device { width: 270px; }
  .north-evidence-orbit { width: 430px; height: 430px; }
  .north-bilingual { min-height: 0; padding-block: 120px; }
  .north-bilingual__visual { min-height: 520px; }
  .north-bilingual__monogram { font-size: 76px; }
  .north-bilingual__screen { width: 158px; }
  .north-security { min-height: 0; padding-block: 120px; }
  .north-security__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    height: auto;
    margin-block-start: 64px;
  }
  .north-security__grid::before,
  .north-security__grid::after,
  .north-security__core { display: none; }
  .north-security-item,
  .north-security-item:nth-of-type(1),
  .north-security-item:nth-of-type(2),
  .north-security-item:nth-of-type(3),
  .north-security-item:nth-of-type(4) {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 124px;
  }
  .north-access { min-height: 0; padding-block: 120px; }
  .north-access__portal { display: none; }
  .north-access-form,
  html[dir="rtl"] .north-access-form { padding: 28px 20px; transform: none; }
}

@media (max-width: 420px) {
  .north-hero h1 { font-size: 46px; }
  .north-hero__wordmark strong { font-size: 54px; }
  .north-device--center { width: 228px; }
  .north-atlas__device { width: 232px; }
  .north-bilingual__screen { width: 144px; }
}

@media (prefers-reduced-motion: reduce) {
  .north-arrival,
  .north-cursor,
  .north-ambient,
  .north-scroll-telemetry,
  .north-portal::before,
  .north-portal__ring,
  .north-atlas__halo,
  .north-loop__line span,
  .north-trust__beam,
  .north-access__portal {
    display: none;
  }

  .north-device,
  .north-evidence-orbit,
  .north-bilingual__screen,
  .north-bilingual__axis i,
  .north-star,
  .north-button {
    animation: none !important;
  }

  .north-button {
    --magnetic-x: 0px !important;
    --magnetic-y: 0px !important;
    --button-lift: 0px !important;
  }

  .north-button::after,
  .north-access-form::before,
  .north-access-form::after {
    animation: none !important;
  }

  [data-reveal] {
    filter: none;
    opacity: 1;
    transform: none;
  }
}

/* V2 presentation rebuild: text stays anchored while product surfaces travel. */
html[dir="rtl"] body,
.north-experience[dir="rtl"] {
  font-family: "SF Arabic", "Geeza Pro", "PN Arabic", "Noto Sans Arabic", sans-serif;
  font-kerning: normal;
}

.north-section-heading,
.north-trust__content,
.north-bilingual__content,
.north-access__copy,
.north-hero-stage,
.north-loop__track,
.north-trust__visual,
.north-bilingual__visual,
.north-security__grid,
.north-access-form {
  translate: none;
  rotate: none;
}

.north-section-heading,
.north-trust__content,
.north-bilingual__content,
.north-access__copy {
  will-change: auto;
}

.north-hero {
  width: min(calc(100% - 96px), 1520px);
  overflow: clip;
  contain: layout paint;
}

.north-hero__copy {
  min-width: 0;
  padding-inline: 4px 24px;
  translate: none;
}

.north-hero h1,
.north-hero__statement,
.north-hero__body,
.north-hero__actions {
  max-width: 100%;
}

html[dir="rtl"] .north-hero h1,
.north-experience[dir="rtl"] .north-hero h1 {
  font-family: "SF Arabic", "Geeza Pro", "PN Arabic", sans-serif;
  font-size: 58px;
  font-weight: 620;
  line-height: 1.23;
}

html[dir="rtl"] .north-hero__statement,
.north-experience[dir="rtl"] .north-hero__statement,
html[dir="rtl"] .north-section-heading h2,
html[dir="rtl"] .north-trust h2,
html[dir="rtl"] .north-bilingual h2,
html[dir="rtl"] .north-access h2,
html[dir="rtl"] .north-security h2,
html[dir="rtl"] .north-continuum h2,
html[dir="rtl"] .north-atlas__detail h3 {
  font-family: "SF Arabic", "Geeza Pro", "PN Arabic", sans-serif;
  font-weight: 610;
}

.north-atlas {
  --atlas-stage-x: -118px;
  --atlas-stage-y: 0px;
  --atlas-stage-rotation: -2.4deg;
  --atlas-route-offset: 1;
  overflow: clip;
}

.north-atlas::after,
.north-atlas__workspace::after {
  display: none;
}

.north-atlas > .north-section-heading {
  width: min(calc(100% - 96px), 1180px);
  min-width: 0;
  margin-inline: auto;
  text-align: start;
  translate: none;
}

.north-atlas__workspace {
  direction: ltr;
  grid-template-columns: minmax(290px, 0.56fr) minmax(560px, 1.44fr);
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-areas:
    "rail rail"
    "detail visual";
  gap: 32px 48px;
  width: min(calc(100% - 96px), 1440px);
  isolation: isolate;
}

.north-atlas__workspace::before {
  inset-block-start: 126px;
  inset-inline: auto 0;
  z-index: -1;
  font-size: 150px;
  opacity: 0.54;
}

.north-atlas__route {
  position: absolute;
  inset: 82px -8% 0;
  z-index: -1;
  width: 116%;
  height: calc(100% - 82px);
  overflow: visible;
  pointer-events: none;
}

.north-atlas__route-shadow,
.north-atlas__route-line {
  fill: none;
  stroke-linecap: round;
}

.north-atlas__route-shadow {
  stroke: rgba(var(--atlas-accent), 0.13);
  stroke-width: 18;
  filter: blur(14px);
}

.north-atlas__route-line {
  stroke: rgba(var(--atlas-accent), 0.68);
  stroke-width: 1.4;
  stroke-dasharray: 1;
  stroke-dashoffset: var(--atlas-route-offset);
  filter: drop-shadow(0 0 10px rgba(var(--atlas-accent), 0.5));
}

.north-atlas__route-node {
  fill: var(--north-gold-pale);
  filter: drop-shadow(0 0 14px rgba(232, 196, 122, 0.8));
  opacity: calc(0.2 + var(--atlas-story-progress, 0) * 0.8);
}

.north-atlas__rail {
  direction: ltr;
  grid-template-columns: repeat(8, minmax(80px, 1fr));
  gap: 8px;
  width: 100%;
  padding-block: 4px 18px;
}

.north-module-tab {
  grid-template-rows: 48px minmax(30px, auto);
  gap: 8px;
  min-width: 0;
  min-height: 88px;
  padding: 4px;
  line-height: 1.35;
}

.north-module-tab > span:last-child {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.north-module-tab__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  margin: 0;
  place-self: center;
}

.north-module-tab__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.north-atlas__visual {
  grid-area: visual;
  min-width: 0;
  min-height: 0;
  overflow: visible;
  translate: none;
  rotate: none;
}

.north-atlas__visual::before {
  width: min(600px, 82%);
  height: auto;
  aspect-ratio: 1;
}

.north-atlas__device {
  width: min(330px, calc((100svh - 250px) * 0.49));
  translate: var(--atlas-stage-x) var(--atlas-stage-y);
  rotate: var(--atlas-stage-rotation);
  transition:
    border-color 500ms ease,
    box-shadow 500ms ease,
    transform 700ms var(--north-ease),
    translate 90ms linear,
    rotate 90ms linear;
  will-change: translate, rotate;
}

.north-atlas__detail,
html[dir="rtl"] .north-atlas__detail {
  direction: ltr;
  grid-area: detail;
  align-self: center;
  width: 100%;
  min-width: 0;
  min-height: 460px;
  padding: 46px 34px 46px 0;
  border-inline: 0;
  border-right: 1px solid rgba(var(--atlas-accent), 0.25);
  translate: none;
}

html[dir="rtl"] .north-atlas__detail {
  direction: rtl;
  padding: 46px 0 46px 34px;
}

.north-atlas__detail h3,
.north-atlas__detail > p,
.north-atlas__metric {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.north-atlas__detail > p:not(.north-atlas__label, .north-atlas__sample) {
  min-height: 104px;
}

.north-continuum {
  --continuum-progress: 0;
  --continuum-route-offset: 1;
  position: relative;
  min-height: 1040px;
  padding-block: 136px 96px;
  overflow: clip;
  border-block: 1px solid rgba(123, 136, 255, 0.13);
  background:
    radial-gradient(circle at 72% 40%, rgba(128, 216, 255, 0.08), transparent 28%),
    radial-gradient(circle at 32% 70%, rgba(232, 196, 122, 0.06), transparent 26%),
    rgba(7, 10, 20, 0.62);
}

#platform,
#intelligence,
#trust,
#devices,
#security,
#access {
  scroll-margin-block-start: 88px;
}

.north-continuum::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(128, 216, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 216, 255, 0.026) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black, transparent 76%);
}

.north-continuum > .north-section-heading {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 96px), 1100px);
  margin-inline: auto;
  text-align: center;
}

.north-continuum > .north-section-heading > p:last-child {
  max-width: 740px;
  margin-inline: auto;
}

.north-continuum__stage {
  position: relative;
  width: min(calc(100% - 72px), 1500px);
  height: 720px;
  margin: 70px auto 0;
  direction: ltr;
  perspective: 1900px;
}

.north-continuum__route {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.north-continuum__route path {
  fill: none;
  stroke: rgba(123, 136, 255, 0.16);
  stroke-width: 1.2;
}

.north-continuum__route .north-continuum__route-live {
  stroke: rgba(232, 196, 122, 0.76);
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: var(--continuum-route-offset);
  filter: drop-shadow(0 0 12px rgba(232, 196, 122, 0.45));
}

.north-surface {
  --surface-x: -160px;
  --surface-y: 60px;
  --surface-opacity: 0;
  position: absolute;
  z-index: 2;
  margin: 0;
  opacity: var(--surface-opacity);
  translate: var(--surface-x) var(--surface-y);
  transition: translate 100ms linear, opacity 120ms linear;
  will-change: translate, opacity;
}

.north-surface figcaption {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 36px;
  margin-block-end: 10px;
  color: var(--north-text-secondary);
  font-size: 11px;
  font-weight: 640;
}

.north-surface__status {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--north-success);
  box-shadow: 0 0 13px rgba(77, 227, 161, 0.82);
}

.north-surface--desktop {
  inset-block-start: 142px;
  inset-inline-start: 4%;
  width: 65%;
  transform: rotateY(7deg) rotateX(2deg) rotateZ(-1deg);
  transform-origin: 40% 50%;
}

.north-surface--tablet {
  inset-block-start: 32px;
  inset-inline-end: 1%;
  z-index: 3;
  width: 37%;
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(1deg);
  transform-origin: 70% 50%;
}

.north-surface--phone {
  inset-inline-start: 63%;
  inset-block-end: -6px;
  z-index: 5;
  width: 18%;
  transform: rotateY(-5deg) rotateZ(1deg) translateZ(70px);
}

.north-desktop-shell,
.north-tablet-shell,
.north-phone-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.3);
  background: #04060d;
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.68),
    0 0 0 4px rgba(11, 16, 32, 0.9),
    0 0 72px rgba(75, 111, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.north-desktop-shell {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.north-desktop-shell__chrome {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 34px;
  padding-inline: 13px;
  border-block-end: 1px solid rgba(123, 136, 255, 0.16);
  color: var(--north-text-tertiary);
  background: #0b1020;
  font-size: 8px;
}

.north-desktop-shell__chrome i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(170, 178, 200, 0.36);
}

.north-desktop-shell__chrome i:nth-child(1) { background: var(--north-critical); }
.north-desktop-shell__chrome i:nth-child(2) { background: var(--north-gold); }
.north-desktop-shell__chrome i:nth-child(3) { background: var(--north-success); }
.north-desktop-shell__chrome span { margin-inline-start: 8px; }

.north-desktop-shell__workspace {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 9px;
  height: calc(100% - 34px);
  padding: 9px;
}

.north-desktop-shell__nav {
  display: grid;
  align-content: start;
  gap: 9px;
  padding-block: 8px;
  border-inline-end: 1px solid rgba(123, 136, 255, 0.13);
}

.north-desktop-shell__nav span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-inline: auto;
  border: 1px solid transparent;
}

.north-desktop-shell__nav span.is-active {
  border-color: rgba(232, 196, 122, 0.48);
  background: rgba(232, 196, 122, 0.07);
  box-shadow: 0 0 18px rgba(232, 196, 122, 0.12);
}

.north-desktop-shell__nav img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.north-desktop-shell__primary,
.north-desktop-shell__secondary,
.north-tablet-shell__canvas {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(123, 136, 255, 0.14);
  background: #060810;
}

.north-desktop-shell__primary img,
.north-desktop-shell__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.north-tablet-shell {
  aspect-ratio: 4 / 3;
  padding: 11px;
  border-radius: 22px;
}

.north-tablet-shell__camera {
  position: absolute;
  inset-block-start: 5px;
  inset-inline-start: 50%;
  z-index: 2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(170, 178, 200, 0.44);
}

.north-tablet-shell__canvas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  width: 100%;
  height: 100%;
  padding: 7px;
  border-radius: 12px;
}

.north-tablet-shell__canvas img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: top center;
}

.north-phone-shell {
  aspect-ratio: 780 / 1688;
  border-radius: 24px;
}

.north-phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1180px) {
  .north-hero {
    width: min(calc(100% - 48px), 1120px);
  }

  .north-atlas > .north-section-heading,
  .north-atlas__workspace,
  .north-continuum > .north-section-heading {
    width: min(calc(100% - 48px), 1080px);
  }

  .north-atlas__workspace {
    grid-template-columns: minmax(260px, 0.6fr) minmax(500px, 1.4fr);
    gap-inline: 24px;
  }

  .north-atlas__detail,
  html[dir="rtl"] .north-atlas__detail {
    padding-inline-end: 22px;
  }

  .north-continuum__stage {
    width: calc(100% - 48px);
    height: 650px;
  }
}

@media (max-width: 960px) {
  .north-hero {
    width: min(calc(100% - 36px), 760px);
    contain: paint;
  }

  .north-hero__copy {
    padding-inline: 12px;
  }

  .north-atlas {
    min-height: 0;
  }

  .north-atlas > .north-section-heading,
  .north-atlas__workspace,
  .north-continuum > .north-section-heading {
    width: min(calc(100% - 36px), 760px);
  }

  .north-atlas__workspace {
    direction: ltr;
    grid-template-columns: 1fr;
    grid-template-rows: auto 620px auto;
    grid-template-areas: "rail" "visual" "detail";
    gap: 26px;
  }

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

  .north-atlas__detail,
  html[dir="rtl"] .north-atlas__detail {
    min-height: 0;
    padding: 42px 0 0;
    border: 0;
    border-block-start: 1px solid rgba(var(--atlas-accent), 0.25);
  }

  .north-atlas__detail > p:not(.north-atlas__label, .north-atlas__sample) {
    min-height: 0;
  }

  .north-atlas__route {
    inset: 130px -22% 0;
    width: 144%;
  }

  .north-atlas__device {
    width: 270px;
    translate: 0 0;
    rotate: 0deg;
  }

  .north-continuum {
    min-height: 0;
    padding-block: 120px 130px;
  }

  .north-continuum__stage {
    display: grid;
    width: min(calc(100% - 36px), 760px);
    height: auto;
    gap: 64px;
    margin-block-start: 62px;
    perspective: none;
  }

  .north-continuum__route {
    inset: 0 -20%;
    width: 140%;
  }

  .north-surface {
    position: relative;
    inset: auto;
    width: 100%;
    opacity: var(--surface-opacity);
    transform: none;
    translate: var(--surface-x) var(--surface-y);
  }

  .north-surface--phone { order: 1; width: min(52%, 300px); justify-self: center; }
  .north-surface--tablet { order: 2; }
  .north-surface--desktop { order: 3; }
}

@media (max-width: 700px) {
  .north-hero {
    width: calc(100% - 24px);
  }

  .north-hero__copy {
    padding-inline: 4px;
  }

  html[dir="rtl"] .north-hero h1,
  .north-experience[dir="rtl"] .north-hero h1 {
    font-size: 40px;
    line-height: 1.28;
  }

  html[dir="rtl"] .north-hero__statement,
  .north-experience[dir="rtl"] .north-hero__statement {
    font-size: 24px;
    line-height: 1.5;
  }

  .north-atlas > .north-section-heading,
  .north-atlas__workspace,
  .north-continuum > .north-section-heading,
  .north-continuum__stage {
    width: calc(100% - 28px);
  }

  .north-atlas__workspace {
    grid-template-rows: auto 560px auto;
  }

  .north-module-tab {
    grid-template-rows: 42px minmax(28px, auto);
    min-height: 82px;
  }

  .north-module-tab > span:last-child {
    display: -webkit-box;
    font-size: 9px;
  }

  .north-module-tab__icon {
    width: 38px;
    height: 38px;
  }

  .north-atlas__visual {
    min-height: 560px;
  }

  .north-atlas__device {
    width: min(244px, 70vw);
  }

  .north-continuum > .north-section-heading {
    text-align: center;
  }

  .north-continuum__stage {
    gap: 50px;
  }

  .north-surface--phone {
    width: min(66%, 260px);
  }

  .north-desktop-shell__workspace {
    grid-template-columns: 36px 1fr 0.7fr;
    gap: 5px;
    padding: 5px;
  }

  .north-desktop-shell__nav {
    gap: 5px;
  }

  .north-desktop-shell__nav span {
    width: 26px;
    height: 26px;
  }

  .north-desktop-shell__nav img {
    width: 15px;
    height: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .north-atlas__route-line,
  .north-continuum__route-live {
    stroke-dashoffset: 0;
  }

  .north-atlas__device,
  .north-surface {
    translate: none;
    rotate: none;
    opacity: 1;
    transition: none;
  }
}
