:root {
  --north-void: #060708;
  --north-base: #060810;
  --north-surface-1: #0b1020;
  --north-surface-2: #11172a;
  --north-surface-3: #18213a;
  --north-text: #f4f1ea;
  --north-text-secondary: #aab2c8;
  --north-text-tertiary: #737d9a;
  --north-gold: #e8c47a;
  --north-gold-pale: #f8d99a;
  --north-gold-deep: #b48c32;
  --north-cobalt: #4b6fff;
  --north-indigo: #7b88ff;
  --north-glacier: #80d8ff;
  --north-success: #4de3a1;
  --north-critical: #ff707a;
  --north-stroke: rgba(123, 136, 255, 0.26);
  --north-hairline: rgba(244, 241, 234, 0.12);
  --north-page: 1360px;
  --north-header-height: 76px;
  --north-ease: cubic-bezier(0.19, 0.6, 0.18, 1);
  --north-fast: 180ms;
  --north-state: 220ms;
  --north-panel: 280ms;
  --north-entry: 360ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--north-void);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--north-text);
  background: var(--north-void);
  font-family: "PN Inter", Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--north-base);
  background: var(--north-gold);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.north-skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--north-base);
  background: var(--north-gold-pale);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  transform: translateY(-160%);
  transition: transform var(--north-state) var(--north-ease);
}

.north-skip-link:focus {
  transform: translateY(0);
}

.north-experience {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  color: var(--north-text);
  background:
    linear-gradient(90deg, transparent 0, rgba(75, 111, 255, 0.028) 50%, transparent 100%),
    var(--north-base);
}

.north-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.76;
}

.north-experience::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(166, 203, 222, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 203, 222, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

.north-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--north-header-height);
  border-block-end: 1px solid transparent;
  transition:
    background var(--north-panel) var(--north-ease),
    border-color var(--north-panel) var(--north-ease),
    transform var(--north-panel) var(--north-ease);
}

.north-header.is-scrolled {
  border-color: rgba(123, 136, 255, 0.2);
  background: rgba(6, 8, 16, 0.82);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(140%);
}

.north-header__inner {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  width: min(calc(100% - 48px), var(--north-page));
  height: 100%;
  margin-inline: auto;
}

.north-brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  font-size: 12px;
  font-weight: 650;
  color: var(--north-text);
}

.north-brand__mark {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(232, 196, 122, 0.42);
  background: rgba(17, 23, 42, 0.76);
  transform: rotate(45deg);
}

.north-brand__mark::after {
  position: absolute;
  inset: 4px;
  content: "";
  border: 1px solid rgba(123, 136, 255, 0.34);
}

.north-brand__mark img {
  width: 22px;
  height: 22px;
  transform: rotate(-45deg);
}

.north-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.north-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--north-text-secondary);
  font-size: 13px;
  font-weight: 520;
  transition: color var(--north-state) ease;
}

.north-nav a::after {
  position: absolute;
  inset-block-end: 5px;
  inset-inline: 0;
  height: 1px;
  content: "";
  background: var(--north-gold);
  box-shadow: 0 0 10px rgba(232, 196, 122, 0.7);
  transform: scaleX(0);
  transition: transform var(--north-state) var(--north-ease);
}

.north-nav a:hover,
.north-nav a:focus-visible,
.north-nav a.is-active {
  color: var(--north-text);
}

.north-nav a:hover::after,
.north-nav a:focus-visible::after,
.north-nav a.is-active::after {
  transform: scaleX(1);
}

.north-header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}

.north-language {
  display: grid;
  grid-template-columns: repeat(2, 36px);
  height: 36px;
  padding: 3px;
  border: 1px solid rgba(123, 136, 255, 0.2);
  background: rgba(17, 23, 42, 0.62);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.north-language button {
  min-width: 0;
  border: 0;
  color: var(--north-text-tertiary);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.north-language button[aria-pressed="true"] {
  color: var(--north-gold-pale);
  background: rgba(232, 196, 122, 0.12);
  box-shadow: inset 0 0 0 1px rgba(232, 196, 122, 0.22);
}

.north-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(123, 136, 255, 0.28);
  color: var(--north-text);
  background: rgba(17, 23, 42, 0.8);
  cursor: pointer;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.north-menu-button img {
  width: 24px;
  height: 24px;
}

.north-mobile-nav {
  width: min(calc(100% - 32px), 520px);
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(123, 136, 255, 0.3);
  background: rgba(11, 16, 32, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  backdrop-filter: blur(24px);
}

.north-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding-inline: 14px;
  border-block-end: 1px solid rgba(123, 136, 255, 0.13);
  color: var(--north-text-secondary);
}

.north-mobile-nav a:last-child {
  border-block-end: 0;
  color: var(--north-gold-pale);
}

.north-button {
  position: relative;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 48px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
  transition:
    transform var(--north-fast) var(--north-ease),
    box-shadow var(--north-state) var(--north-ease),
    filter var(--north-state) ease;
}

.north-button::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  clip-path: inherit;
}

.north-button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.north-button:hover {
  transform: translateY(-2px);
}

.north-button:active {
  transform: translateY(1px) scale(0.99);
}

.north-button:focus-visible,
.north-language button:focus-visible,
.north-menu-button:focus-visible,
.north-module-tab:focus-visible,
.north-access-form input:focus-visible,
.north-access-form textarea:focus-visible {
  outline: 2px solid var(--north-glacier);
  outline-offset: 3px;
}

.north-button--gold {
  color: #080a10;
  border-color: var(--north-gold-pale);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(110deg, #b48c32 0%, #f8d99a 45%, #d4a94f 100%);
  box-shadow:
    0 0 0 1px rgba(180, 140, 50, 0.45),
    0 10px 28px rgba(180, 140, 50, 0.22),
    inset 0 -5px 10px rgba(105, 69, 11, 0.22);
}

.north-button--gold::after {
  position: absolute;
  inset-block: 0;
  inset-inline-start: -70%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  transform: skewX(-18deg);
  transition: inset-inline-start 650ms var(--north-ease);
}

.north-button--gold:hover::after {
  inset-inline-start: 132%;
}

.north-button--gold:hover {
  box-shadow:
    0 0 0 1px rgba(248, 217, 154, 0.72),
    0 12px 36px rgba(232, 196, 122, 0.34),
    0 0 44px rgba(232, 196, 122, 0.13),
    inset 0 -5px 10px rgba(105, 69, 11, 0.18);
}

.north-button--gold img {
  filter: brightness(0.18);
}

.north-button__spark {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: #9f761f;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.north-button--glass {
  color: var(--north-text);
  border-color: rgba(123, 136, 255, 0.34);
  background: rgba(17, 23, 42, 0.52);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.north-button--glass:hover {
  border-color: rgba(232, 196, 122, 0.52);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.11),
    0 0 28px rgba(75, 111, 255, 0.16);
}

.north-button--compact {
  min-width: 142px;
  min-height: 40px;
  padding-inline: 16px;
  font-size: 12px;
}

.north-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(620px, 1.3fr);
  grid-template-rows: 1fr auto;
  gap: 20px 42px;
  align-items: center;
  width: min(calc(100% - 64px), var(--north-page));
  min-height: min(900px, calc(100svh - 24px));
  margin-inline: auto;
  padding-block: calc(var(--north-header-height) + 60px) 56px;
}

.north-hero::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(232, 196, 122, 0.45), rgba(75, 111, 255, 0.52), transparent);
}

.north-hero__copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 520px;
}

.north-eyebrow {
  margin: 0 0 18px;
  color: var(--north-gold);
  font-size: 12px;
  font-weight: 670;
  text-transform: uppercase;
}

html[dir="rtl"] .north-eyebrow {
  text-transform: none;
}

.north-hero h1 {
  margin: 0;
  color: var(--north-text);
  font-family: "PN Display", serif;
  font-size: 76px;
  font-weight: 560;
  line-height: 0.95;
}

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

.north-hero__statement {
  max-width: 490px;
  margin: 28px 0 0;
  color: var(--north-text);
  font-family: "PN Display", serif;
  font-size: 34px;
  font-weight: 520;
  line-height: 1.08;
}

html[dir="rtl"] .north-hero__statement,
.north-experience[dir="rtl"] .north-hero__statement {
  font-family: "PN Arabic", sans-serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.45;
}

.north-hero__body {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--north-text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

html[dir="rtl"] .north-hero__body {
  line-height: 1.9;
}

.north-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 32px;
}

.north-hero__meridian {
  position: absolute;
  inset-block: var(--north-header-height) 0;
  inset-inline-start: 41%;
  z-index: -1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(232, 196, 122, 0.42) 18%, rgba(75, 111, 255, 0.3) 70%, transparent);
}

.north-hero__meridian span {
  position: absolute;
  inset-block-start: 28%;
  inset-inline-start: 50%;
  width: 13px;
  height: 13px;
  background: var(--north-gold-pale);
  box-shadow: 0 0 24px rgba(232, 196, 122, 0.74);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  transform: translate(-50%, -50%);
}

.north-hero__meridian i {
  position: absolute;
  inset-block-end: 20%;
  inset-inline-start: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(232, 196, 122, 0.6);
  transform: translate(-50%, 50%) rotate(45deg);
}

.north-hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 650px;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.north-stage-orbit {
  position: absolute;
  inset-block-start: 46%;
  inset-inline-start: 54%;
  border: 1px solid rgba(123, 136, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(70deg) rotateZ(-12deg);
  box-shadow: 0 0 80px rgba(75, 111, 255, 0.08);
}

.north-stage-orbit::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: -3px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--north-glacier);
  box-shadow: 0 0 15px var(--north-glacier);
}

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

.north-stage-orbit--inner {
  width: 500px;
  height: 500px;
  border-color: rgba(232, 196, 122, 0.18);
}

.north-device {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 286px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.26);
  border-radius: 27px;
  background: #03050c;
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.62),
    0 0 0 4px rgba(11, 16, 32, 0.74),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform var(--north-panel) var(--north-ease);
}

.north-device img {
  width: 100%;
  height: auto;
}

.north-device--center {
  z-index: 5;
  width: 310px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.7),
    0 0 0 4px rgba(11, 16, 32, 0.85),
    0 0 50px rgba(75, 111, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) translateZ(90px) rotateY(-2deg);
}

.north-device--left {
  z-index: 2;
  inset-inline-start: 20%;
  width: 245px;
  opacity: 0.78;
  filter: saturate(0.8) brightness(0.78);
  transform: translate(-50%, -47%) translateZ(-80px) rotateY(18deg) rotateZ(-3deg);
}

.north-device--right {
  z-index: 3;
  inset-inline-start: 82%;
  width: 250px;
  opacity: 0.86;
  filter: saturate(0.86) brightness(0.82);
  transform: translate(-50%, -48%) translateZ(-40px) rotateY(-18deg) rotateZ(3deg);
}

html[dir="rtl"] .north-device--left {
  transform: translate(-50%, -47%) translateZ(-80px) rotateY(-18deg) rotateZ(3deg);
}

html[dir="rtl"] .north-device--right {
  transform: translate(-50%, -48%) translateZ(-40px) rotateY(18deg) rotateZ(-3deg);
}

.north-device__edge {
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(232, 196, 122, 0.34);
  border-radius: inherit;
  mask-image: linear-gradient(120deg, black 0 12%, transparent 34% 66%, black 88%);
}

.north-device__live {
  position: absolute;
  inset-inline: 22%;
  inset-block-end: 11.2%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--north-cobalt), var(--north-glacier), transparent);
  box-shadow: 0 0 15px rgba(75, 111, 255, 0.92);
  opacity: 0.9;
}

.north-hero-stage__label {
  position: absolute;
  inset-inline-end: 2%;
  inset-block-end: 7%;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--north-text-tertiary);
  font-size: 11px;
}

.north-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--north-success);
  box-shadow: 0 0 12px rgba(77, 227, 161, 0.8);
}

.north-hero__signal {
  grid-column: 1 / -1;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--north-text-tertiary);
  font-size: 12px;
}

.north-hero__signal > span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.north-status {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.north-status--success {
  background: var(--north-success);
  box-shadow: 0 0 12px rgba(77, 227, 161, 0.74);
}

.north-status--gold {
  background: var(--north-gold);
  box-shadow: 0 0 12px rgba(232, 196, 122, 0.7);
}

.north-section-heading {
  width: min(calc(100% - 48px), 860px);
  margin-inline: auto;
  text-align: center;
}

.north-section-heading h2,
.north-trust h2,
.north-bilingual h2,
.north-access h2,
.north-security h2 {
  margin: 0;
  color: var(--north-text);
  font-family: "PN Display", serif;
  font-size: 52px;
  font-weight: 560;
  line-height: 1.03;
}

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-family: "PN Arabic", sans-serif;
  font-size: 40px;
  font-weight: 540;
  line-height: 1.45;
}

.north-section-heading > p:last-child,
.north-trust__body,
.north-bilingual__content > p:last-of-type,
.north-access__copy > p:last-of-type {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--north-text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.north-atlas {
  position: relative;
  padding-block: 128px 146px;
  background:
    linear-gradient(180deg, rgba(17, 23, 42, 0.22), transparent 30%),
    rgba(6, 8, 16, 0.48);
}

.north-atlas__workspace {
  display: grid;
  grid-template-columns: 224px minmax(360px, 1fr) minmax(260px, 340px);
  gap: 0;
  width: min(calc(100% - 48px), var(--north-page));
  min-height: 720px;
  margin: 72px auto 0;
  overflow: hidden;
  border: 1px solid rgba(123, 136, 255, 0.28);
  background: rgba(8, 11, 22, 0.72);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.04);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  backdrop-filter: blur(16px);
}

.north-atlas__rail {
  display: flex;
  flex-direction: column;
  padding: 22px 14px;
  border-inline-end: 1px solid rgba(123, 136, 255, 0.16);
  background: rgba(11, 16, 32, 0.64);
}

.north-module-tab {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 62px;
  padding: 8px 12px;
  border: 1px solid transparent;
  color: var(--north-text-tertiary);
  text-align: start;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 560;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  transition:
    color var(--north-state) ease,
    background var(--north-state) ease,
    border-color var(--north-state) ease,
    transform var(--north-state) var(--north-ease);
}

.north-module-tab + .north-module-tab {
  margin-block-start: 4px;
}

.north-module-tab::after {
  position: absolute;
  inset-block: 12px;
  inset-inline-start: 0;
  width: 2px;
  content: "";
  background: transparent;
  box-shadow: none;
  transition: background var(--north-state) ease, box-shadow var(--north-state) ease;
}

.north-module-tab__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(123, 136, 255, 0.18);
  background: rgba(17, 23, 42, 0.62);
  transform: rotate(45deg) scale(0.74);
  transition:
    border-color var(--north-state) ease,
    box-shadow var(--north-state) ease,
    transform var(--north-state) var(--north-ease);
}

.north-module-tab__icon img {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg) scale(1.18);
}

.north-module-tab:hover,
.north-module-tab.is-active {
  color: var(--north-text);
  border-color: rgba(123, 136, 255, 0.2);
  background: linear-gradient(90deg, rgba(75, 111, 255, 0.14), rgba(17, 23, 42, 0.38));
  transform: translateX(3px);
}

html[dir="rtl"] .north-module-tab:hover,
html[dir="rtl"] .north-module-tab.is-active {
  transform: translateX(-3px);
}

.north-module-tab.is-active::after {
  background: var(--north-gold);
  box-shadow: 0 0 14px rgba(232, 196, 122, 0.74);
}

.north-module-tab.is-active .north-module-tab__icon {
  border-color: rgba(232, 196, 122, 0.7);
  box-shadow: 0 0 24px rgba(75, 111, 255, 0.24), inset 0 0 18px rgba(123, 136, 255, 0.17);
  transform: rotate(45deg) scale(0.82);
}

.north-atlas__visual {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(75, 111, 255, 0.13), transparent 44%),
    linear-gradient(180deg, rgba(17, 23, 42, 0.22), rgba(6, 8, 16, 0.68));
}

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

.north-atlas__visual::before {
  width: 520px;
  height: 520px;
  border: 1px solid rgba(123, 136, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(123, 136, 255, 0.025),
    0 0 0 160px rgba(123, 136, 255, 0.018);
}

.north-atlas__visual::after {
  inset-block: 8%;
  inset-inline-start: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(232, 196, 122, 0.28), rgba(75, 111, 255, 0.3), transparent);
}

.north-atlas__coordinates {
  position: absolute;
  inset-block-start: 18px;
  inset-inline: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(115, 125, 154, 0.66);
  font-size: 9px;
  font-weight: 650;
}

.north-atlas__device {
  position: relative;
  z-index: 2;
  width: 292px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.24);
  border-radius: 26px;
  background: #04060c;
  box-shadow:
    0 42px 76px rgba(0, 0, 0, 0.58),
    0 0 0 4px rgba(11, 16, 32, 0.9),
    0 0 70px rgba(75, 111, 255, 0.14);
}

.north-atlas__device::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(232, 196, 122, 0.1);
}

.north-atlas__device img {
  width: 100%;
  transition: opacity var(--north-state) ease, transform var(--north-panel) var(--north-ease);
}

.north-atlas__device img.is-switching {
  opacity: 0;
  transform: scale(0.985) translateY(8px);
}

.north-atlas__beam {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: 4%;
  z-index: 1;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--north-gold), transparent);
  box-shadow: 0 0 24px rgba(232, 196, 122, 0.46);
  transform: translateX(-50%);
}

.north-atlas__detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 34px;
  border-inline-start: 1px solid rgba(123, 136, 255, 0.16);
  background: rgba(11, 16, 32, 0.56);
}

.north-atlas__index {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: var(--north-text-tertiary);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.north-atlas__index i {
  height: 1px;
  background: linear-gradient(90deg, var(--north-gold), rgba(123, 136, 255, 0.24));
}

.north-atlas__label {
  margin: 38px 0 10px;
  color: var(--north-gold);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

html[dir="rtl"] .north-atlas__label {
  text-transform: none;
}

.north-atlas__detail h3 {
  margin: 0;
  color: var(--north-text);
  font-family: "PN Display", serif;
  font-size: 36px;
  font-weight: 560;
  line-height: 1.05;
}

html[dir="rtl"] .north-atlas__detail h3 {
  font-family: "PN Arabic", sans-serif;
  font-size: 30px;
  font-weight: 550;
  line-height: 1.45;
}

.north-atlas__detail > p:not(.north-atlas__label, .north-atlas__sample) {
  min-height: 112px;
  margin: 22px 0 0;
  color: var(--north-text-secondary);
  font-size: 14px;
  line-height: 1.72;
}

html[dir="rtl"] .north-atlas__detail > p:not(.north-atlas__label, .north-atlas__sample) {
  line-height: 1.9;
}

.north-atlas__metric {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  margin-block-start: 24px;
  padding-inline: 14px;
  border-block: 1px solid rgba(232, 196, 122, 0.16);
  color: var(--north-text);
  font-size: 12px;
}

.north-atlas__sample {
  margin: 24px 0 0;
  color: var(--north-text-tertiary);
  font-size: 10px;
}

.north-atlas__progress {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  margin-block-start: 26px;
}

.north-atlas__progress span {
  height: 2px;
  background: rgba(115, 125, 154, 0.24);
  transition: background var(--north-state) ease, box-shadow var(--north-state) ease;
}

.north-atlas__progress span.is-active {
  background: var(--north-gold);
  box-shadow: 0 0 9px rgba(232, 196, 122, 0.72);
}

.north-star {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: var(--north-gold-pale);
  box-shadow: 0 0 24px rgba(232, 196, 122, 0.48);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.north-star--small {
  width: 13px;
  height: 13px;
}

.north-loop {
  position: relative;
  padding-block: 150px;
  border-block: 1px solid rgba(123, 136, 255, 0.13);
  background:
    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.34);
}

.north-loop__inner {
  width: min(calc(100% - 48px), var(--north-page));
  margin-inline: auto;
}

.north-section-heading--wide {
  width: min(100%, 980px);
}

.north-loop__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  margin-block-start: 88px;
}

.north-loop__line {
  position: absolute;
  inset-inline: 4%;
  inset-block-start: 61px;
  height: 1px;
  background: rgba(123, 136, 255, 0.23);
}

.north-loop__line i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--north-gold), var(--north-cobalt), var(--north-success));
  box-shadow: 0 0 18px rgba(75, 111, 255, 0.5);
  transition: width 1100ms var(--north-ease);
}

.north-loop__track.is-visible .north-loop__line i {
  width: 100%;
}

.north-loop-step {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.north-loop-step__number {
  display: block;
  margin-block-end: 24px;
  color: var(--north-text-tertiary);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.north-loop-step__mark {
  display: block;
  width: 16px;
  height: 16px;
  margin-block-end: 30px;
  border: 1px solid rgba(232, 196, 122, 0.82);
  background: var(--north-surface-1);
  box-shadow: 0 0 0 7px rgba(11, 16, 32, 0.92), 0 0 22px rgba(232, 196, 122, 0.16);
  transform: rotate(45deg);
  transition: background var(--north-panel) ease, box-shadow var(--north-panel) ease;
}

.north-loop__track.is-visible .north-loop-step__mark {
  background: var(--north-gold);
  box-shadow: 0 0 0 7px rgba(11, 16, 32, 0.92), 0 0 22px rgba(232, 196, 122, 0.42);
}

.north-loop-step h3 {
  margin: 0;
  font-family: "PN Display", serif;
  font-size: 30px;
  font-weight: 560;
}

html[dir="rtl"] .north-loop-step h3 {
  font-family: "PN Arabic", sans-serif;
  font-size: 25px;
  font-weight: 560;
}

.north-loop-step p {
  max-width: 250px;
  margin: 12px 0 0;
  color: var(--north-text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

html[dir="rtl"] .north-loop-step p {
  line-height: 1.85;
}

.north-trust {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(380px, 1.05fr);
  gap: 90px;
  align-items: center;
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
  padding-block: 150px;
}

.north-trust__visual {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
}

.north-trust__device {
  position: relative;
  z-index: 3;
  width: 310px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.23);
  border-radius: 28px;
  background: #04060c;
  box-shadow:
    0 45px 90px rgba(0, 0, 0, 0.62),
    0 0 0 4px rgba(17, 23, 42, 0.9),
    0 0 70px rgba(75, 111, 255, 0.13);
  transform: rotateY(5deg) rotateZ(-1deg);
}

html[dir="rtl"] .north-trust__device {
  transform: rotateY(-5deg) rotateZ(1deg);
}

.north-evidence-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(123, 136, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.north-evidence-orbit::before,
.north-evidence-orbit::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(123, 136, 255, 0.11);
  border-radius: 50%;
}

.north-evidence-orbit::after {
  inset: 26%;
  border-color: rgba(232, 196, 122, 0.14);
}

.north-evidence-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--north-glacier);
  box-shadow: 0 0 15px rgba(128, 216, 255, 0.8);
}

.north-evidence-orbit span:nth-child(1) { inset: 8% auto auto 34%; }
.north-evidence-orbit span:nth-child(2) { inset: 42% 0 auto auto; background: var(--north-gold); }
.north-evidence-orbit span:nth-child(3) { inset: auto auto 4% 55%; background: var(--north-success); }
.north-evidence-orbit span:nth-child(4) { inset: 55% auto auto -1%; background: var(--north-critical); }

.north-trust__content {
  max-width: 560px;
}

.north-trust__body {
  margin-inline: 0;
}

.north-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 40px 0 0;
  border: 1px solid rgba(123, 136, 255, 0.18);
  background: rgba(123, 136, 255, 0.14);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

.north-proof-grid div {
  min-height: 112px;
  padding: 22px;
  background: rgba(11, 16, 32, 0.93);
}

.north-proof-grid dt {
  color: var(--north-text-tertiary);
  font-size: 11px;
}

.north-proof-grid dd {
  margin: 12px 0 0;
  color: var(--north-text);
  font-size: 13px;
  font-weight: 620;
}

.north-bilingual {
  display: grid;
  grid-template-columns: minmax(350px, 0.78fr) minmax(580px, 1.22fr);
  gap: 80px;
  align-items: center;
  width: min(calc(100% - 48px), var(--north-page));
  margin-inline: auto;
  padding-block: 144px;
  border-block-start: 1px solid rgba(123, 136, 255, 0.13);
}

.north-bilingual__content {
  max-width: 500px;
}

.north-bilingual__content > p:last-of-type {
  margin-inline: 0;
}

.north-bilingual__content .north-button {
  margin-block-start: 30px;
}

.north-button__language {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(232, 196, 122, 0.45);
  color: var(--north-gold-pale);
  background: rgba(232, 196, 122, 0.08);
  font-size: 9px;
  font-weight: 700;
  transform: rotate(45deg);
}

.north-bilingual__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  min-height: 670px;
  perspective: 1200px;
}

.north-bilingual__screen {
  position: relative;
  z-index: 2;
  width: min(100%, 270px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.22);
  border-radius: 26px;
  background: #05070e;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.58), 0 0 0 4px rgba(17, 23, 42, 0.82);
}

.north-bilingual__screen--en {
  transform: rotateY(8deg) translateY(-10px);
}

.north-bilingual__screen--ar {
  transform: rotateY(-8deg) translateY(22px);
}

.north-bilingual__screen figcaption {
  position: absolute;
  inset-inline-start: 16px;
  inset-block-end: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(232, 196, 122, 0.32);
  color: var(--north-gold-pale);
  background: rgba(6, 8, 16, 0.88);
  font-family: "PN Inter", sans-serif;
  font-size: 9px;
}

.north-bilingual__axis {
  position: relative;
  z-index: 1;
  display: block;
  width: 1px;
  height: 76%;
  margin-inline: auto;
  background: linear-gradient(transparent, rgba(232, 196, 122, 0.5), rgba(75, 111, 255, 0.44), transparent);
}

.north-bilingual__axis i {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid var(--north-gold);
  background: var(--north-surface-1);
  transform: translate(-50%, -50%) rotate(45deg);
}

.north-security {
  padding-block: 140px 150px;
  border-block: 1px solid rgba(123, 136, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(17, 23, 42, 0.5), rgba(6, 8, 16, 0.4)),
    var(--north-base);
}

.north-security > * {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

.north-security__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-block-start: 68px;
  border: 1px solid rgba(123, 136, 255, 0.16);
  background: rgba(123, 136, 255, 0.13);
}

.north-security-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 150px;
  padding: 30px;
  background: rgba(8, 11, 22, 0.94);
}

.north-security-item__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(232, 196, 122, 0.42);
  background: rgba(17, 23, 42, 0.82);
  box-shadow: inset 0 0 20px rgba(75, 111, 255, 0.09);
  transform: rotate(45deg);
}

.north-security-item__icon img {
  width: 28px;
  height: 28px;
  transform: rotate(-45deg);
}

.north-security-item__line {
  width: 1px;
  height: 58px;
  background: linear-gradient(transparent, rgba(232, 196, 122, 0.48), transparent);
}

.north-security-item p {
  margin: 0;
  color: var(--north-text-secondary);
  font-size: 14px;
  line-height: 1.72;
}

html[dir="rtl"] .north-security-item p {
  line-height: 1.9;
}

.north-access {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(520px, 1.2fr);
  gap: 96px;
  align-items: center;
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
  padding-block: 152px;
}

.north-access__copy {
  max-width: 480px;
}

.north-access__copy .north-star {
  margin-block-end: 40px;
}

.north-access__copy > p:last-of-type {
  margin-inline: 0;
}

.north-access-form {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(123, 136, 255, 0.28);
  background:
    linear-gradient(150deg, rgba(24, 33, 58, 0.65), rgba(11, 16, 32, 0.86) 60%),
    var(--north-surface-1);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.35),
    inset 0 1px rgba(255, 255, 255, 0.05);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

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

.north-access-form::before {
  inset-block-start: -1px;
  inset-inline-start: 14px;
  width: 118px;
  height: 1px;
  background: var(--north-gold);
  box-shadow: 0 0 17px rgba(232, 196, 122, 0.6);
}

.north-access-form::after {
  inset-block-end: -1px;
  inset-inline-end: 14px;
  width: 86px;
  height: 1px;
  background: var(--north-cobalt);
  box-shadow: 0 0 17px rgba(75, 111, 255, 0.66);
}

.north-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.north-access-form label:not(.north-consent) {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--north-text-tertiary);
  font-size: 11px;
  font-weight: 560;
}

.north-access-form input[type="text"],
.north-access-form input[type="email"],
.north-access-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(123, 136, 255, 0.24);
  border-radius: 0;
  color: var(--north-text);
  background: rgba(6, 8, 16, 0.62);
  box-shadow: inset 0 1px 7px rgba(0, 0, 0, 0.2);
  outline: none;
  transition: border-color var(--north-state) ease, box-shadow var(--north-state) ease;
}

.north-access-form input:hover,
.north-access-form textarea:hover,
.north-access-form input:focus,
.north-access-form textarea:focus {
  border-color: rgba(128, 216, 255, 0.62);
  box-shadow: inset 0 1px 7px rgba(0, 0, 0, 0.2), 0 0 22px rgba(75, 111, 255, 0.1);
}

.north-access-form textarea {
  min-height: 110px;
  resize: vertical;
}

.north-form-context {
  margin-block-start: 22px;
}

.north-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  margin-block-start: 22px;
  color: var(--north-text-secondary);
  cursor: pointer;
  font-size: 12px;
}

.north-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.north-consent__box {
  display: block;
  width: 20px;
  height: 20px;
  margin-block-start: 1px;
  border: 1px solid rgba(123, 136, 255, 0.46);
  background: rgba(6, 8, 16, 0.66);
  transform: rotate(45deg) scale(0.72);
  transition: background var(--north-state) ease, box-shadow var(--north-state) ease;
}

.north-consent input:checked + .north-consent__box {
  border-color: var(--north-gold);
  background: var(--north-gold);
  box-shadow: 0 0 16px rgba(232, 196, 122, 0.44);
}

.north-consent input:focus-visible + .north-consent__box {
  outline: 2px solid var(--north-glacier);
  outline-offset: 5px;
}

.north-button--submit {
  width: 100%;
  margin-block-start: 28px;
}

.north-button--submit[disabled] {
  cursor: wait;
  filter: saturate(0.4) brightness(0.72);
}

.north-form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--north-text-secondary);
  font-size: 12px;
  text-align: center;
}

.north-form-status.is-success { color: var(--north-success); }
.north-form-status.is-error { color: var(--north-critical); }

.north-honeypot {
  position: absolute !important;
  inset: auto auto auto -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.north-footer {
  position: relative;
  border-block-start: 1px solid rgba(123, 136, 255, 0.14);
  background: #05070d;
}

.north-footer__meridian {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 196, 122, 0.48), rgba(75, 111, 255, 0.44), transparent);
}

.north-footer__meridian i {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid var(--north-gold);
  background: var(--north-base);
  transform: translate(-50%, -50%) rotate(45deg);
}

.north-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  width: min(calc(100% - 48px), var(--north-page));
  margin-inline: auto;
  padding-block: 72px 36px;
}

.north-footer__brand {
  display: grid;
  grid-template-columns: 18px auto;
  gap: 8px 10px;
  align-items: center;
}

.north-footer__brand strong {
  font-size: 12px;
}

.north-footer__brand p {
  grid-column: 2;
  margin: 0;
  color: var(--north-text-tertiary);
  font-size: 12px;
}

.north-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
  color: var(--north-text-secondary);
  font-size: 12px;
}

.north-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.north-footer nav a:hover,
.north-footer nav a:focus-visible {
  color: var(--north-gold-pale);
}

.north-footer__copyright {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-block-start: 22px;
  border-block-start: 1px solid rgba(123, 136, 255, 0.1);
  color: var(--north-text-tertiary);
  font-size: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--north-entry) ease, transform var(--north-entry) var(--north-ease);
}

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

.north-editorial {
  min-height: 100vh;
  padding: 112px 24px 80px;
  color: var(--north-text);
  background: var(--north-base);
}

.north-editorial__inner {
  width: min(100%, 820px);
  margin-inline: auto;
}

.north-editorial__topbar {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.north-editorial__language {
  display: grid;
  width: 44px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(232, 196, 122, 0.3);
  color: var(--north-gold-pale);
  background: rgba(17, 23, 42, 0.72);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  font-size: 11px;
  font-weight: 700;
}

.north-wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--north-gold);
  font-size: 12px;
  font-weight: 650;
}

.north-article h1,
.north-editorial--center h1 {
  margin: 56px 0 28px;
  font-family: "PN Display", serif;
  font-size: 52px;
  font-weight: 560;
  line-height: 1.05;
}

.north-article__content {
  color: var(--north-text-secondary);
}

.north-article > .north-eyebrow {
  margin-block-start: 68px;
}

.north-article > .north-eyebrow + h1 {
  margin-block-start: 18px;
}

.north-article__lead {
  max-width: 660px;
  margin: 0 0 46px;
  color: var(--north-text-secondary);
  font-size: 18px;
}

.north-system-status,
.north-system-sections {
  display: grid;
  gap: 14px;
}

.north-system-status {
  grid-template-columns: repeat(2, 1fr);
}

.north-system-status article,
.north-system-sections section {
  position: relative;
  border: 1px solid rgba(123, 136, 255, 0.22);
  background: rgba(17, 23, 42, 0.6);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.north-system-status article {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 142px;
  padding: 28px;
}

.north-system-status h2,
.north-system-sections h2 {
  margin: 0 0 8px;
  color: var(--north-text);
  font-size: 17px;
  font-weight: 620;
}

.north-system-status p,
.north-system-sections p {
  margin: 0;
  color: var(--north-text-secondary);
}

.north-system-status .north-status {
  margin-block-start: 8px;
}

.north-status--critical {
  background: var(--north-critical);
  box-shadow: 0 0 12px rgba(255, 112, 122, 0.6);
}

.north-system-sections section {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 4px 16px;
  min-height: 154px;
  padding: 30px;
}

.north-system-sections section .north-star {
  margin-block-start: 5px;
}

.north-system-sections section p {
  grid-column: 2;
}

.north-article__note {
  margin-block-start: 22px;
  color: var(--north-text-tertiary);
  font-size: 12px;
}

.north-editorial--center {
  display: grid;
  place-items: center;
  text-align: center;
}

.north-editorial--center .north-button {
  margin-block-start: 22px;
}

@media (max-width: 1180px) {
  .north-header__inner {
    grid-template-columns: 210px 1fr auto;
  }

  .north-nav {
    gap: 18px;
  }

  .north-header .north-button--compact {
    display: none;
  }

  .north-hero {
    grid-template-columns: minmax(290px, 0.72fr) minmax(520px, 1.28fr);
    gap: 28px;
  }

  .north-hero h1 {
    font-size: 64px;
  }

  .north-hero__statement {
    font-size: 30px;
  }

  .north-hero-stage {
    height: 590px;
  }

  .north-device--center {
    width: 276px;
  }

  .north-device--left,
  .north-device--right {
    width: 216px;
  }

  .north-atlas__workspace {
    grid-template-columns: 194px minmax(330px, 1fr) 280px;
  }

  .north-module-tab {
    grid-template-columns: 32px 1fr;
    gap: 8px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .north-atlas__detail {
    padding-inline: 25px;
  }

  .north-trust,
  .north-bilingual,
  .north-access {
    gap: 54px;
  }
}

@media (max-width: 960px) {
  :root {
    --north-header-height: 68px;
  }

  .north-header__inner {
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 32px), var(--north-page));
  }

  .north-nav {
    display: none;
  }

  .north-menu-button {
    display: grid;
    place-items: center;
  }

  .north-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    width: min(calc(100% - 40px), 760px);
    min-height: 980px;
    padding-block: 122px 54px;
  }

  .north-hero__copy {
    max-width: 620px;
    text-align: center;
    margin-inline: auto;
  }

  .north-hero__body,
  .north-hero__statement {
    margin-inline: auto;
  }

  .north-hero__actions {
    justify-content: center;
  }

  .north-hero__meridian {
    inset-inline-start: 50%;
    opacity: 0.52;
  }

  .north-hero-stage {
    height: 570px;
  }

  .north-hero__signal {
    grid-column: 1;
  }

  .north-atlas__workspace {
    grid-template-columns: 118px minmax(320px, 1fr) 244px;
  }

  .north-module-tab {
    grid-template-columns: 1fr;
    place-items: center;
    min-height: 66px;
    text-align: center;
  }

  .north-module-tab > span:last-child {
    display: none;
  }

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

  .north-loop__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
  }

  .north-loop__line {
    display: none;
  }

  .north-trust,
  .north-bilingual,
  .north-access {
    grid-template-columns: 1fr;
  }

  .north-trust__content,
  .north-bilingual__content,
  .north-access__copy {
    max-width: 680px;
  }

  .north-trust__visual {
    order: 2;
  }

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

  .north-access {
    gap: 54px;
  }
}

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

  .north-brand__name {
    font-size: 10px;
  }

  .north-language {
    grid-template-columns: repeat(2, 32px);
  }

  .north-hero {
    width: calc(100% - 28px);
    min-height: 920px;
    padding-block-start: 116px;
  }

  .north-hero h1 {
    font-size: 48px;
    line-height: 1;
  }

  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__body {
    font-size: 14px;
  }

  .north-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .north-button {
    width: 100%;
    min-width: 0;
  }

  .north-hero-stage {
    height: 500px;
    margin-block-start: 12px;
  }

  .north-device--center {
    width: 246px;
  }

  .north-device--left {
    inset-inline-start: 5%;
    width: 184px;
    opacity: 0.46;
  }

  .north-device--right {
    inset-inline-start: 95%;
    width: 184px;
    opacity: 0.46;
  }

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

  .north-stage-orbit--inner {
    width: 340px;
    height: 340px;
  }

  .north-hero-stage__label {
    inset-inline: 0;
    justify-content: center;
  }

  .north-hero__signal {
    flex-direction: column;
    gap: 8px;
  }

  .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 h2,
  .north-trust h2,
  .north-bilingual h2,
  .north-access h2,
  .north-security h2 {
    font-size: 38px;
  }

  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: 32px;
  }

  .north-atlas {
    padding-block: 102px 108px;
  }

  .north-atlas__workspace {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-block-start: 50px;
    overflow: visible;
  }

  .north-atlas__rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 10px;
    overflow: hidden;
    border-inline-end: 0;
    border-block-end: 1px solid rgba(123, 136, 255, 0.18);
  }

  .north-module-tab {
    min-height: 56px;
    padding: 4px;
  }

  .north-module-tab:hover,
  .north-module-tab.is-active,
  html[dir="rtl"] .north-module-tab:hover,
  html[dir="rtl"] .north-module-tab.is-active {
    transform: translateY(-2px);
  }

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

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

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

  .north-atlas__device {
    width: 250px;
  }

  .north-atlas__detail {
    min-height: 330px;
    padding: 34px 26px;
    border-inline-start: 0;
    border-block-start: 1px solid rgba(123, 136, 255, 0.16);
  }

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

  .north-loop {
    padding-block: 108px;
  }

  .north-loop__track {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-block-start: 58px;
  }

  .north-loop-step {
    display: grid;
    grid-template-columns: 38px 20px 1fr;
    gap: 6px 13px;
  }

  .north-loop-step__number,
  .north-loop-step__mark {
    margin: 0;
  }

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

  .north-loop-step p {
    grid-column: 3;
    max-width: none;
    margin-block-start: 2px;
  }

  .north-trust,
  .north-bilingual,
  .north-security,
  .north-access {
    padding-block: 104px;
  }

  .north-trust__visual {
    min-height: 590px;
  }

  .north-trust__device {
    width: 258px;
  }

  .north-evidence-orbit {
    width: 390px;
    height: 390px;
  }

  .north-proof-grid {
    grid-template-columns: 1fr;
  }

  .north-proof-grid div {
    min-height: 90px;
  }

  .north-bilingual__visual {
    grid-template-columns: 1fr 22px 1fr;
    min-height: 500px;
  }

  .north-bilingual__screen {
    width: 162px;
    border-radius: 19px;
  }

  .north-security__grid {
    grid-template-columns: 1fr;
  }

  .north-security-item {
    grid-template-columns: 48px 1px 1fr;
    min-height: 136px;
    gap: 16px;
    padding: 24px 20px;
  }

  .north-security-item__icon {
    width: 46px;
    height: 46px;
  }

  .north-access-form {
    padding: 26px 20px;
  }

  .north-form-grid {
    grid-template-columns: 1fr;
  }

  .north-footer__inner {
    grid-template-columns: 1fr;
    padding-block-start: 62px;
  }

  .north-footer nav {
    justify-content: flex-start;
  }

  .north-editorial {
    padding-inline: 18px;
  }

  .north-system-status {
    grid-template-columns: 1fr;
  }

  .north-article h1 {
    font-size: 42px;
  }
}

@media (max-width: 420px) {
  .north-header__actions {
    gap: 7px;
  }

  .north-brand__name {
    display: none;
  }

  .north-brand__mark {
    width: 34px;
    height: 34px;
  }

  .north-hero h1 {
    font-size: 44px;
  }

  .north-hero__statement {
    font-size: 24px;
  }

  .north-device--center {
    width: 230px;
  }

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

  .north-atlas__device {
    width: 234px;
  }

  .north-bilingual__screen {
    width: 146px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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

  .north-field,
  .north-stage-orbit,
  .north-device__live {
    display: none;
  }
}
