*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary: #1f2d62;
  --primary-2: #3f59aa;
  --primary-3: #9badd6;
  --secondary: #6eb5d2;
  --secondary-2: #95d2f3;
  --secondary-3: #c2e4f8;
  --tertiary: #95d2f3;
  --tertiary-2: #c2e4f8;
  --tertiary-3: #e7f5fc;
  --night: var(--primary);
  --night-2: #14234e;
  --night-3: var(--primary-2);
  --paper: #f3f4f6;
  --paper-2: #e9edf4;
  --mist: var(--secondary-3);
  --ink: #27314f;
  --muted: #717782;
  --quiet: #8c94a6;
  --line: #d7dce7;
  --accent: var(--secondary);
  --accent-bright: var(--secondary-2);
  --accent-light: var(--tertiary);
  --accent-soft: var(--tertiary-3);
  --blue: var(--primary-2);
  --white-tint: #fbfcff;
  --shadow: 0 28px 80px rgb(31 45 98 / 0.18);
  --shadow-soft: 0 18px 52px rgb(31 45 98 / 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
  --display: Montserrat, Arial, sans-serif;
  --body: Afacad, Arial, sans-serif;
  --max: 1380px;
  --r: 8px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-bright),
    var(--accent-light),
    var(--blue)
  );
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.58;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

video {
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      900px 520px at 100% 6%,
      oklch(72% 0.12 84 / 0.18),
      transparent 62%
    ),
    radial-gradient(
      760px 500px at 0% 28%,
      rgb(110 181 210 / 0.1),
      transparent 62%
    ),
    repeating-linear-gradient(
      90deg,
      oklch(20% 0.035 174 / 0.025) 0 1px,
      transparent 1px 88px
    );
  pointer-events: none;
}

a {
  color: inherit;
}

::selection {
  background: var(--accent-light);
  color: var(--night);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--accent-light);
  color: var(--night);
  padding: 10px 14px;
  border-radius: var(--r);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 24px), var(--max));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 3vw, 42px);
  padding: 10px 22px 10px 12px;
  border: 1px solid oklch(99% 0.004 151 / 0.18);
  border-radius: 999px;
  background:
    radial-gradient(
      120px 70px at 13% 18%,
      oklch(99% 0.004 151 / 0.28),
      transparent 70%
    ),
    radial-gradient(
      180px 90px at 88% 8%,
      oklch(72% 0.12 84 / 0.18),
      transparent 72%
    ),
    linear-gradient(
      135deg,
      oklch(99% 0.004 151 / 0.22),
      oklch(99% 0.004 151 / 0.075) 42%,
      oklch(99% 0.004 151 / 0.12)
    ),
    oklch(16% 0.045 174 / 0.38);
  box-shadow:
    0 30px 90px oklch(10% 0.035 174 / 0.36),
    0 10px 28px oklch(72% 0.12 84 / 0.08),
    inset 0 1px 0 oklch(99% 0.004 151 / 0.18);
  backdrop-filter: blur(26px) saturate(170%) contrast(108%);
  -webkit-backdrop-filter: blur(26px) saturate(170%) contrast(108%);
  transform: translateX(-50%);
  transition:
    padding 360ms var(--ease),
    background 360ms var(--ease),
    width 360ms var(--ease);
  overflow: hidden;
}

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

.site-nav::before {
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      320px 70px at 14% 8%,
      oklch(99% 0.004 151 / 0.18),
      transparent 72%
    ),
    radial-gradient(
      280px 68px at 92% 10%,
      oklch(99% 0.004 151 / 0.13),
      transparent 76%
    );
  opacity: 0.9;
}

.site-nav::after {
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, oklch(99% 0.004 151 / 0.22), transparent);
  opacity: 0.55;
}

.site-nav.compact {
  padding-block: 7px;
  background:
    radial-gradient(
      120px 70px at 13% 18%,
      oklch(99% 0.004 151 / 0.24),
      transparent 70%
    ),
    linear-gradient(
      135deg,
      oklch(99% 0.004 151 / 0.2),
      oklch(99% 0.004 151 / 0.065)
    ),
    oklch(16% 0.045 174 / 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white-tint);
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--secondary);
  background: var(--white-tint);
  box-shadow: inset 0 -1px 0 rgb(31 45 98 / 0.1);
  opacity: 0;
  transform: translateY(-6px);
  animation: rise 800ms var(--ease-slow) 80ms forwards;
}

.brand-logo {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  display: block;
}

.brand-word {
  display: inline-block;
  color: var(--white-tint);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 0.92;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-copy small {
  color: rgb(194 228 248 / 0.84);
  font: 700 0.62rem/1 var(--body);
  letter-spacing: 0.16em;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  color: oklch(97% 0.01 151 / 0.72);
  font: 700 0.8rem/1 var(--display);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

.nav-links a {
  text-decoration: none;
  transition: color 180ms var(--ease);
}

.nav-links a:hover {
  color: var(--accent-light);
}

.nav-cta,
.button,
button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--r);
  padding: 0 18px;
  color: var(--white-tint);
  background: var(--secondary);
  font: 700 0.72rem/1 var(--body);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 16px 36px rgb(110 181 210 / 0.26);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease),
    background 260ms var(--ease);
}

.nav-cta {
  min-height: 38px;
  border-radius: 0;
  padding: 0 6px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.nav-cta:hover {
  background: transparent;
  color: var(--accent-light);
  box-shadow: none;
  transform: none;
}

.nav-cta::before {
  display: none;
}

.nav-cta::before,
.button.primary::before,
button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  z-index: -1;
  width: 55%;
  background: linear-gradient(
    110deg,
    transparent,
    rgb(251 252 255 / 0.44),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 680ms var(--ease);
}

.nav-cta:hover::before,
.button.primary:hover::before,
button:hover::before {
  left: 125%;
}

.nav-cta:hover,
.button:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgb(110 181 210 / 0.32);
}

.button.secondary {
  color: var(--white-tint);
  background: oklch(99% 0.004 151 / 0.07);
  border-color: oklch(99% 0.004 151 / 0.18);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.button.secondary:hover {
  background: oklch(99% 0.004 151 / 0.12);
  border-color: oklch(99% 0.004 151 / 0.32);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: clamp(640px, 88svh, 920px);
  display: grid;
  place-items: center;
  padding: 126px 0 78px;
  overflow: hidden;
  color: var(--white-tint);
  background: var(--night);
  isolation: isolate;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-bright) 0 32%,
    var(--accent-light) 32% 68%,
    var(--blue) 68% 100%
  );
  z-index: 3;
}

.hero-grid {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  max-width: 700px;
}

.hero-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid oklch(99% 0.004 151 / 0.16);
  border-radius: 999px;
  background: oklch(99% 0.004 151 / 0.07);
  color: oklch(88% 0.075 86 / 0.94);
  font: 700 0.68rem/1 var(--body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(12px);
  animation: rise 850ms var(--ease-slow) 120ms forwards;
}

.badge-signal {
  width: 18px;
  height: 18px;
  border: 1px solid oklch(88% 0.075 86 / 0.48);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, currentColor 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, currentColor 46% 54%, transparent 54%);
  color: var(--accent-light);
  box-shadow: inset 0 0 0 5px rgb(110 181 210 / 0.2);
}

.badge-dot,
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgb(149 210 243 / 0.48);
  animation: pulse 2400ms ease-in-out infinite;
  flex: 0 0 auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 1;
}

.hero-title {
  margin: 0;
  max-width: 700px;
  color: var(--white-tint);
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.65vw, 4rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 18px 46px rgb(0 0 0 / 0.46);
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0.04em 0.025em 0.08em;
}

.word > i {
  display: inline-block;
  font-style: normal;
  transform: translateY(112%);
  animation: wordReveal 1080ms var(--ease-slow) forwards;
  will-change: transform;
}

.hero-title .quiet > i {
  color: rgb(251 252 255 / 0.72);
  font-weight: 600;
}

.hero-title .kingdom > i {
  color: var(--white-tint);
}

.hero-title .kingdom {
  position: relative;
}

.hero-title .kingdom::after {
  content: none;
}

.hero-sub {
  max-width: 54ch;
  margin: 0;
  color: rgb(251 252 255 / 0.78);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 900ms var(--ease-slow) 820ms forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 900ms var(--ease-slow) 960ms forwards;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: oklch(97% 0.01 151 / 0.56);
  font: 700 0.68rem/1.35 var(--body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 900ms var(--ease-slow) 1100ms forwards;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-feature {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(22px);
  animation: rise 1000ms var(--ease-slow) 420ms forwards;
}

.feature-frame {
  position: relative;
  min-height: clamp(520px, 63vh, 680px);
  overflow: hidden;
  border: 1px solid oklch(99% 0.004 151 / 0.16);
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    oklch(99% 0.004 151 / 0.1),
    oklch(99% 0.004 151 / 0.035)
  );
  box-shadow:
    0 32px 90px oklch(10% 0.035 174 / 0.38),
    inset 0 1px 0 oklch(99% 0.004 151 / 0.1);
  backdrop-filter: blur(22px) saturate(145%);
  clip-path: inset(0 0 100% 0 round 26px);
  animation: revealClip 1300ms var(--ease-slow) 360ms forwards;
}

.feature-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      oklch(16% 0.045 174 / 0.1),
      oklch(16% 0.045 174 / 0.72)
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 9px,
      oklch(99% 0.004 151 / 0.035) 10px
    );
  pointer-events: none;
  z-index: 2;
}

.control-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: slowDrift 22s ease-in-out infinite alternate;
}

.hud-panel {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 15px;
  padding: 18px;
  border: 1px solid oklch(99% 0.004 151 / 0.14);
  border-radius: 16px;
  background: oklch(16% 0.045 174 / 0.64);
  backdrop-filter: blur(18px);
}

.hud-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--white-tint);
  font-family: var(--body);
  font-weight: 700;
}

.hud-top small {
  display: block;
  margin-top: 4px;
  color: oklch(97% 0.01 151 / 0.52);
  font: 700 0.62rem/1.25 var(--body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.control-bars {
  display: grid;
  gap: 9px;
}

.control-bar {
  display: grid;
  grid-template-columns: 74px 1fr 44px;
  align-items: center;
  gap: 10px;
  color: oklch(97% 0.01 151 / 0.66);
  font: 700 0.62rem/1 var(--body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: oklch(99% 0.004 151 / 0.09);
}

.track i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent-light));
  transform-origin: left center;
  transform: scaleX(0);
  animation: fillTrack 1300ms var(--ease-slow) 1200ms forwards;
}

.hero-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent-light);
  z-index: 5;
  opacity: 0;
  animation: rise 700ms var(--ease) 1500ms forwards;
  pointer-events: none;
}

.hero-corner.tl {
  top: -10px;
  left: -10px;
  border-right: 0;
  border-bottom: 0;
}
.hero-corner.tr {
  top: -10px;
  right: -10px;
  border-left: 0;
  border-bottom: 0;
}
.hero-corner.bl {
  bottom: -10px;
  left: -10px;
  border-right: 0;
  border-top: 0;
}
.hero-corner.br {
  bottom: -10px;
  right: -10px;
  border-left: 0;
  border-top: 0;
}

.hero-vlabel {
  position: absolute;
  top: 50%;
  right: -45px;
  z-index: 5;
  color: oklch(97% 0.01 151 / 0.45);
  font: 800 0.62rem/1 var(--display);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg);
  white-space: nowrap;
  opacity: 0;
  animation: rise 700ms var(--ease) 1700ms forwards;
}

.hero-scroll {
  position: absolute;
  left: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: oklch(97% 0.01 151 / 0.5);
  font: 800 0.66rem/1 var(--display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise 700ms var(--ease) 1780ms forwards;
}

.hero-scroll::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  animation: scrollLine 2200ms ease-in-out infinite;
}

section {
  position: relative;
  padding: clamp(78px, 9vw, 132px) 0;
}

.wrap {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.68fr);
  gap: clamp(22px, 5vw, 74px);
  align-items: end;
  margin-bottom: clamp(32px, 6vw, 74px);
}

.section-head.center {
  display: block;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent);
  font: 700 0.68rem/1 var(--body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h2 {
  color: var(--night);
  font-family: var(--body);
  font-size: clamp(1.74rem, 2.94vw, 2.58rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.58;
  max-width: 62ch;
}

.gallery-section {
  padding: clamp(70px, 8vw, 120px) 0;
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.gallery-head h2 {
  margin: 10px 0 0;
}

.gallery-head__desc {
  margin: 0;
  color: var(--muted);
  max-width: none;
  width: 100%;
  font-size: 1rem;
  line-height: 1.55;
}

.gallery-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.gallery-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white-tint);
  color: var(--night);
  cursor: pointer;
  padding: 0;
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease),
    opacity 180ms var(--ease);
}

.gallery-arrow svg {
  width: 18px;
  height: 18px;
}

.gallery-arrow:hover:not(:disabled) {
  background: var(--night);
  color: var(--white-tint);
}

.gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-rail-wrap {
  position: relative;
}

.gallery-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  color: #fbfcff;
  isolation: isolate;
  box-shadow: 0 20px 50px oklch(16% 0.045 174 / 0.18);
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
  z-index: 0;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(16% 0.045 174 / 0.95) 0%,
    oklch(16% 0.045 174 / 0.55) 45%,
    oklch(16% 0.045 174 / 0) 75%
  );
  z-index: 1;
  pointer-events: none;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-card__tag {
  align-self: flex-start;
  padding: 4px 10px;
  margin-bottom: 4px;
  border-radius: 999px;
  background: rgb(251 252 255 / 0.18);
  border: 1px solid rgb(251 252 255 / 0.3);
  font: 700 0.7rem/1 var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card h3 {
  color: #fbfcff;
  font-size: 1.18rem;
  line-height: 1.28;
  margin: 0;
}

.gallery-card__body p {
  margin: 0;
  color: rgb(251 252 255 / 0.85);
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font: 700 0.85rem/1 var(--body);
  letter-spacing: 0.04em;
}

.gallery-card__more svg {
  width: 16px;
  height: 16px;
  transition: transform 220ms var(--ease);
}

.gallery-card:hover .gallery-card__more svg {
  transform: translateX(4px);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: oklch(16% 0.045 174 / 0.2);
  cursor: pointer;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.gallery-dots button.is-active {
  background: var(--night);
  transform: scale(1.25);
}

@media (max-width: 1024px) {
  .gallery-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .gallery-rail {
    grid-template-columns: 1fr;
  }
  .gallery-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.compliance-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  background: var(--white-tint);
  transition:
    background 420ms var(--ease),
    transform 420ms var(--ease);
}

.compliance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, color-mix(in oklab, var(--accent-light) 26%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 420ms var(--ease);
  z-index: 0;
}

.compliance-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 28%, var(--accent-light) 50%, var(--accent) 72%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 520ms var(--ease);
  z-index: 1;
}

.compliance-card > * {
  position: relative;
  z-index: 1;
}

.compliance-card:hover {
  transform: translateY(-2px);
  background: var(--white-tint);
  z-index: 2;
}

.compliance-card:hover::before {
  opacity: 1;
}

.compliance-card:hover::after {
  transform: scaleX(1);
}

.compliance-card:hover .icon {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--accent) 70%, transparent);
}

.compliance-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--night), var(--night-2));
  color: var(--accent-light);
  font: 900 0.76rem/1 var(--display);
  letter-spacing: 0.04em;
  transition:
    transform 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.icon-framework::before {
  content: attr(data-mark);
  position: relative;
  z-index: 1;
}

.icon-framework::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid oklch(88% 0.075 86 / 0.32);
  border-radius: 10px;
  transform: rotate(12deg);
}

.compliance-card h3 {
  margin-top: 42px;
  color: var(--night);
  font-family: var(--body);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.16;
}

.compliance-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.muted-band {
  background: var(--white-tint);
  border-block: 1px solid var(--line);
}

.programmes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(180px, auto));
  gap: 22px;
}

.programme {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white-tint);
  box-shadow: 0 14px 42px rgb(31 45 98 / 0.08);
  transition:
    transform 320ms var(--ease),
    box-shadow 320ms var(--ease),
    border-color 320ms var(--ease);
}

.programme-tall {
  grid-row: span 3;
  min-height: 100%;
  background:
    linear-gradient(155deg, #0a0d31 0%, #14225a 50%, #050816 100%),
    url("assets/images/soc_office_bg_1778717989157.png");
  background-blend-mode: normal, multiply;
  background-size: cover;
  background-position: center;
  color: var(--white-tint);
}

.programme-wide {
  grid-column: span 2;
}

.programme-stat {
  background: var(--white-tint);
}

.programme:hover {
  transform: translateY(-4px);
  border-color: rgb(110 181 210 / 0.38);
  box-shadow: var(--shadow);
}

.programme li {
  color: #4a4a4a;
  font-weight: 500;
}

.programme-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--accent);
  font: 700 0.68rem/1 var(--body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programme-meta span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--night);
}

.programme h3 {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  color: var(--night);
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 700;
  line-height: 1.18;
}

.programme-tall h3 {
  color: var(--white-tint);
  font-size: clamp(1.55rem, 2.35vw, 2.05rem);
  font-weight: 700;
  margin-top: 18px;
}

.programme-tall {
  padding: 0;
  align-items: stretch;
  overflow: visible;
}

.programme-tall-inner {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  gap: 0;
}

.programme-tall-inner .programme-meta {
  margin-bottom: 0;
}

.programme-tall-inner h3 {
  margin-top: auto;
}

.programme-tall-inner > .btn-ghost {
  margin-bottom: auto;
}

.programme-tall-inner > .btn-ghost {
  margin-top: 22px;
  align-self: flex-start;
}

.programme-tall .programme-meta,
.programme-tall .programme-meta span,
.programme-tall .audience,
.programme-tall li {
  color: rgb(251 252 255 / 0.76);
}

.audience {
  margin: 12px 0 0;
  color: var(--secondary);
  font-weight: 650;
  font-size: 0.82rem;
}

ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
}

.programme .btn-ghost {
  margin-top: 26px;
  align-self: flex-start;
  color: var(--night);
}

.programme-tall .btn-ghost {
  color: var(--white-tint);
}

.programme .btn-ghost > span:first-child {
  min-height: 0;
  padding: 7px 16px;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.programme .button {
  margin-top: auto;
  color: var(--night);
  background: var(--accent-soft);
  border-color: rgb(110 181 210 / 0.22);
  box-shadow: none;
  min-height: 40px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.programme-tall .button {
  color: var(--night);
  background: var(--white-tint);
  border-color: rgb(251 252 255 / 0.28);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 126px;
}

.sticky-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
}

.consulting-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  isolation: isolate;
  box-shadow: 0 24px 60px oklch(16% 0.045 174 / 0.18);
}

.split:has(.consulting-visual) {
  align-items: stretch;
}

#consulting .sticky-copy.consulting-visual {
  position: relative;
  top: auto;
}

.consulting-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.consulting-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(16% 0.045 174 / 0.92) 0%,
    oklch(16% 0.045 174 / 0.78) 28%,
    oklch(16% 0.045 174 / 0.35) 55%,
    oklch(16% 0.045 174 / 0) 80%
  );
  z-index: 1;
  pointer-events: none;
}

.consulting-visual__overlay {
  position: relative;
  z-index: 2;
  padding: 28px 28px 32px;
  color: #fbfcff;
}

.consulting-visual__overlay .kicker {
  color: rgb(251 252 255 / 0.78);
}

.consulting-visual__overlay h2 {
  color: #fbfcff;
  margin-bottom: 14px;
}

.consulting-visual__overlay p {
  color: rgb(251 252 255 / 0.86);
  max-width: 56ch;
}

.consulting-list {
  display: grid;
  gap: 12px;
  counter-reset: consulting;
}

.consulting-list li {
  counter-increment: consulting;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 84px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font: 650 0.98rem/1.38 var(--body);
  background: transparent;
}

.consulting-list li::before {
  content: counter(consulting, decimal-leading-zero);
  position: static;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #9aa0a6;
  background: transparent;
  font: 700 1.02rem/1 var(--body);
}

.consulting-list li span {
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white-tint);
  box-shadow: 0 12px 36px oklch(16% 0.045 174 / 0.06);
}

.portfolio-shell {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
}

.portfolio-lead {
  max-width: 880px;
}

.portfolio-lead--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.portfolio-lead--split .portfolio-lead__desc {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .portfolio-lead--split {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.portfolio-lead h2 {
  color: var(--night);
  max-width: 680px;
  font-size: clamp(1.74rem, 2.52vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
}

.portfolio-lead p {
  color: var(--muted);
  max-width: 62ch;
  font-size: clamp(1rem, 1.12vw, 1.1rem);
}

.service-accordion-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.service-accordion {
  border-top: 0.5px solid rgb(0 0 0 / 0.08);
}

.service-accordion-item {
  border-bottom: 0.5px solid rgb(0 0 0 / 0.08);
}

.service-accordion-trigger {
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 14px 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--quiet);
  box-shadow: none;
  font: 650 clamp(0.95rem, 1.12vw, 1.08rem) / 1.28 var(--display);
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  transition:
    color 220ms var(--ease),
    padding 220ms var(--ease);
}

.service-accordion-trigger::before {
  display: none;
}

.service-accordion-trigger::after {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms var(--ease);
}

.service-accordion-trigger:hover {
  color: var(--night);
  box-shadow: none;
  transform: none;
}

.service-accordion-trigger > span:last-child {
  flex: 1;
}

.service-accordion-item.active .service-accordion-trigger {
  color: var(--night);
  font-weight: 700;
  padding-bottom: 14px;
}

.service-accordion-item.active .service-accordion-trigger::after {
  transform: rotate(225deg);
}

.service-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--ease);
}

.service-accordion-item.active .service-accordion-panel {
  max-height: 260px;
}

.service-accordion-panel p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.56;
  max-width: 58ch;
}

.service-accordion-panel img {
  display: none;
}

.service-preview {
  position: sticky;
  top: 126px;
  align-self: stretch;
  height: 100%;
  display: flex;
}

.service-preview img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 24px;
  background: var(--paper-2);
  box-shadow: var(--shadow-soft);
}

.service-preview__caption {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.55;
  max-width: 62ch;
}

.service-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 220ms var(--ease),
    transform 520ms var(--ease);
}

.service-preview.is-changing img {
  opacity: 0.2;
  transform: scale(1.02);
}

.service-stack {
  display: grid;
  gap: 20px;
}

.service-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white-tint);
  box-shadow: 0 12px 34px oklch(16% 0.045 174 / 0.06);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 20%, oklch(72% 0.12 84 / 0.26), transparent 36%),
    linear-gradient(145deg, var(--paper-2), var(--white-tint));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.service-icon::before,
.service-icon::after,
.reason .icon::before,
.reason .icon::after {
  content: "";
  position: absolute;
}

.service-ops::before {
  width: 28px;
  height: 18px;
  border: 2px solid var(--night);
  border-top-width: 6px;
  border-radius: 5px;
}

.service-ops::after {
  width: 18px;
  height: 2px;
  background: var(--accent-light);
  box-shadow: 0 7px 0 var(--accent-light);
}

.service-response::before {
  width: 26px;
  height: 26px;
  border: 2px solid var(--night);
  border-radius: 50%;
}

.service-response::after {
  width: 26px;
  height: 2px;
  background: var(--accent-light);
  transform: rotate(-34deg);
}

.service-risk::before {
  width: 22px;
  height: 28px;
  border: 2px solid var(--night);
  border-radius: 5px;
}

.service-risk::after {
  width: 12px;
  height: 2px;
  background: var(--accent-light);
  box-shadow: 0 6px 0 var(--accent-light), 0 12px 0 var(--accent-light);
}

.service-ai::before {
  width: 26px;
  height: 26px;
  border: 2px solid var(--night);
  border-radius: 9px;
}

.service-ai::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: -8px 0 0 var(--accent-light), 8px 0 0 var(--accent-light), 0 -8px 0 var(--accent-light), 0 8px 0 var(--accent-light);
}

.service-readiness::before {
  width: 30px;
  height: 30px;
  border: 2px solid var(--night);
  border-radius: 50%;
}

.service-readiness::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 0 7px rgb(110 181 210 / 0.16);
}

.service-cloud::before {
  width: 30px;
  height: 18px;
  border: 2px solid var(--night);
  border-top: 0;
  border-radius: 0 0 14px 14px;
}

.service-cloud::after {
  width: 22px;
  height: 2px;
  background: var(--accent-light);
  box-shadow: 0 -7px 0 var(--accent-light);
}

.service-item h3 {
  color: var(--night);
  font-family: var(--body);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.16;
}

.service-item h4 {
  margin: 18px 0 4px;
  color: var(--accent);
  font: 700 0.82rem/1.22 var(--body);
  letter-spacing: 0;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.reason {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white-tint);
  box-shadow: var(--shadow-soft);
  transition:
    transform 320ms var(--ease),
    box-shadow 320ms var(--ease),
    border-color 320ms var(--ease);
}

.reason h3 {
  font-size: calc(1rem + 2px);
}

.reason p {
  font-size: calc(0.95rem - 1px);
  color: var(--night);
}

.reason:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.reason .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, oklch(72% 0.12 84 / 0.24), transparent 38%),
    var(--night);
}

.reason .icon::before {
  inset: 13px;
  border: 2px solid var(--accent-light);
  border-radius: 8px;
}

.reason .icon::after {
  width: 18px;
  height: 2px;
  background: var(--white-tint);
  opacity: 0.78;
}

.reason-sans::before,
.reason-sector::before {
  border-radius: 50%;
}

.reason-regulatory::after {
  width: 22px;
  box-shadow: 0 -7px 0 var(--white-tint), 0 7px 0 var(--white-tint);
}

.reason-arabic::before {
  border-radius: 14px;
}

.reason-vision::before {
  transform: rotate(45deg);
}

.reason h3 {
  color: var(--night);
  font-family: var(--body);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.18;
}

.reason p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.46;
}

.sectors {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}

.sector {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px;
  text-align: center;
  background: var(--white-tint);
  color: var(--night);
  font: 700 0.9rem/1.24 var(--body);
  transition:
    transform 320ms var(--ease),
    box-shadow 320ms var(--ease),
    border-radius 320ms var(--ease);
  position: relative;
}

.sector:hover {
  background: var(--paper);
  z-index: 2;
}

.sector:hover span {
  border-color: var(--accent-light);
}

.sector span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(145deg, oklch(99% 0.004 151 / 0.8), oklch(93% 0.018 151 / 0.9));
  border: 1px solid var(--line);
  color: var(--accent);
  font: 700 0.66rem/1 var(--body);
  letter-spacing: 0.05em;
}

.sector span::before {
  content: attr(data-sector);
}

.quote-band {
  position: relative;
  padding: clamp(76px, 10vw, 126px) 0;
  background: linear-gradient(155deg, #0a0d31 0%, #14225a 50%, #050816 100%);
  color: var(--white-tint);
  overflow: hidden;
  isolation: isolate;
}

.quote-band::before,
.quote-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.quote-band::before {
  width: 460px;
  height: 460px;
  left: 8%;
  bottom: -60px;
  background: radial-gradient(circle, rgb(56 132 178 / 0.55), transparent 70%);
}

.quote-band::after {
  width: 520px;
  height: 520px;
  right: 6%;
  bottom: -120px;
  background: radial-gradient(circle, rgb(28 70 140 / 0.6), transparent 70%);
}

.quote-band > * {
  position: relative;
  z-index: 1;
}

blockquote {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font: 700 clamp(1.22rem, 2.2vw, 1.95rem) / 1.38 var(--body);
  letter-spacing: 0;
}

blockquote::before {
  content: "“";
  display: block;
  color: var(--accent-light);
  font-size: 4rem;
  line-height: 0.7;
  letter-spacing: 0;
}

cite {
  display: block;
  margin-top: 24px;
  color: oklch(97% 0.01 151 / 0.62);
  font: 600 1.05rem/1.5 var(--body);
  letter-spacing: 0;
}

.proof {
  position: relative;
  max-width: 860px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
  box-shadow:
    0 20px 60px rgb(0 0 0 / 0.35),
    inset 0 1px 0 rgb(255 255 255 / 0.22),
    inset 0 -1px 0 rgb(255 255 255 / 0.04);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

.proof-item {
  padding: 24px;
  background: transparent;
  text-align: center;
  border-right: 1px solid rgb(251 252 255 / 0.14);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: #ffffff;
  font: 700 1.65rem/1 var(--body);
  letter-spacing: 0;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: rgb(255 255 255 / 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

.contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 1fr);
  background: var(--white-tint);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--paper-2);
}

.collage-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 150px;
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 22px;
  color: #fbfcff;
}

.collage-stat h3 {
  color: #fbfcff;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 10px;
}

.collage-stat p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgb(251 252 255 / 0.92);
}

.collage-stat--orange {
  background: linear-gradient(135deg, oklch(72% 0.16 55), oklch(64% 0.18 38));
}

.collage-stat--green {
  background: linear-gradient(135deg, oklch(64% 0.16 165), oklch(54% 0.14 180));
}

.contact-form-side {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--white-tint);
}

.contact-form-head .kicker {
  margin-bottom: 10px;
}

.contact-form-head h2 {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.18;
  margin: 0 0 10px;
}

.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 46ch;
}

form.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

form.contact-form button[type="submit"] {
  background: var(--night);
  color: #fbfcff;
  border-color: var(--night);
  box-shadow: 0 16px 36px oklch(16% 0.045 174 / 0.28);
}

form.contact-form button[type="submit"]:hover {
  background: var(--night-2, var(--night));
  box-shadow: 0 22px 42px oklch(16% 0.045 174 / 0.34);
}

form.contact-form button[type="submit"] .action-mark {
  width: 16px;
  height: 16px;
}

.contact-mini {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-mini__label {
  display: inline-block;
  margin-right: 8px;
  color: var(--night);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.contact-mini a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 960px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .contact-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white-tint);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--night);
  font: 700 0.82rem/1 var(--body);
  letter-spacing: 0.02em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font: 600 1rem/1.3 var(--body);
  padding: 14px 14px;
  outline: none;
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background: var(--white-tint);
  box-shadow: 0 0 0 4px rgb(110 181 210 / 0.12);
}

input::placeholder,
textarea::placeholder {
  color: rgb(0 0 0 / 0.38);
  font-weight: 300;
  font-size: 0.85rem;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 2px 0 0;
  color: var(--accent);
  font-weight: 700;
}

.contact-card {
  position: sticky;
  top: 126px;
  overflow: hidden;
  padding: 30px;
  border-radius: 24px;
  background-color: var(--night);
  background-image: 
    linear-gradient(145deg, oklch(16% 0.045 174 / 0.85), var(--night-2)),
    url('assets/images/server_rack_tech_1778718029905.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay, normal;
  color: var(--white-tint);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  color: var(--white-tint);
  font-family: var(--body);
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 26px;
}

.contact-card h3:first-child {
  margin-top: 0;
}

.contact-card p {
  margin: 9px 0 0;
  color: oklch(97% 0.01 151 / 0.7);
  line-height: 1.45;
}

.riyadh {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid oklch(99% 0.004 151 / 0.14);
  border-radius: 18px;
  background: oklch(99% 0.004 151 / 0.07);
  font: 700 0.95rem/1.35 var(--body);
}

.location-mark {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-right: 9px;
  border: 1px solid var(--accent-light);
  border-radius: 50%;
  vertical-align: -3px;
  box-shadow: inset 0 0 0 5px rgb(110 181 210 / 0.2);
}

.arabic {
  display: block;
  margin-top: 8px;
  color: var(--accent-light);
  font-family: var(--body);
  font-size: 1.18rem;
  letter-spacing: 0;
}

.footer-section {
  background: #ffffff;
  color: #2d3148;
  font-family: "DM Sans", sans-serif;
  padding: 48px 12px 0;
}

.footer-wrapper {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 16px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.footer-left {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
  background: #1e4fc0;
  box-shadow: 0 12px 40px rgba(21, 76, 189, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.footer-left-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.footer-logo-image {
  display: block;
  width: min(178px, 52vw);
  height: auto;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  color: #ffffff;
  font: 700 16px/1 "DM Sans", sans-serif;
  letter-spacing: 0;
}

.footer-logo-name {
  color: #ffffff;
  font: 700 22px/1 "DM Sans", sans-serif;
  letter-spacing: 0;
}

.footer-tagline-container {
  margin-top: auto;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.footer-tagline {
  color: #ffffff;
  font: 400 19px/1.45 "DM Sans", sans-serif;
}

.footer-tagline span {
  color: rgba(255, 255, 255, 0.65);
}

.footer-social-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.footer-social-label {
  color: rgba(255, 255, 255, 0.9);
  font: 600 17px/1 "Caveat", cursive;
  letter-spacing: 0.3px;
}

.footer-social-icons {
  display: flex;
  gap: 7px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #0e1014;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.2);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.social-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-icon:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.42),
    0 4px 10px rgba(0, 0, 0, 0.24);
}

.footer-right {
  background: #f0f1f5;
  border-radius: 28px;
  padding: 40px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.footer-lucky-graphic {
  position: absolute;
  top: -36px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.lucky-cube {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  transform: rotate(-10deg);
  background: linear-gradient(135deg, #5b9ffb 0%, #1e5dd7 55%, #1448be 100%);
  box-shadow:
    inset 3px 3px 8px rgba(255, 255, 255, 0.35),
    inset -3px -3px 12px rgba(0, 0, 0, 0.18),
    8px 14px 28px rgba(20, 72, 200, 0.35);
  display: grid;
  place-items: center;
}

.lucky-cube-mark {
  color: #ffffff;
  font: 700 42px/1 "DM Sans", sans-serif;
  letter-spacing: 0;
  transform: rotate(10deg);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.lucky-text-row {
  display: flex;
  gap: 6px;
  align-items: center;
  transform: rotate(-4deg);
  margin-top: 4px;
}

.lucky-arrow {
  width: 22px;
  height: 22px;
  color: #9ca3af;
}

.lucky-arrow path {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lucky-text {
  color: #9ca3af;
  font: 600 20px/1 "Caveat", cursive;
  white-space: nowrap;
}

.footer-nav-cols {
  display: flex;
  gap: 72px;
  padding-top: 8px;
}

.footer-col-title {
  color: #9ca3af;
  font: italic 600 24px/1 "Caveat", cursive;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #111827;
  font: 600 14px/1.25 "DM Sans", sans-serif;
  margin-bottom: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #1f65d6;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}

.footer-copyright {
  color: #9ca3af;
  font: 500 12.5px/1.45 "DM Sans", sans-serif;
  max-width: 220px;
}

.footer-cta-mini {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-cta-mini h4 {
  color: #6b7280;
  font: 400 15px/1.45 "DM Sans", sans-serif;
  letter-spacing: 0;
}

.footer-cta-mini strong {
  display: block;
  color: #111827;
  font-size: 19px;
  font-weight: 700;
}

.footer-subscribe-row {
  display: flex;
  width: 310px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.footer-subscribe-row input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #111827;
  font: 400 13.5px/1.2 "DM Sans", sans-serif;
}

.footer-subscribe-row input::placeholder {
  color: #9ca3af;
}

.footer-subscribe-row button {
  min-height: 0;
  padding: 11px 22px;
  border: 0;
  border-radius: 8px;
  background: #111214;
  color: #ffffff;
  font: 600 13.5px/1.2 "DM Sans", sans-serif;
  letter-spacing: 0;
  text-transform: none;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}

.footer-subscribe-row button::before {
  display: none;
}

.footer-subscribe-row button:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.34),
    0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-watermark {
  max-width: var(--max);
  margin: -60px auto 0;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 0;
  line-height: 0;
}

.footer-watermark svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.footer-watermark text {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  fill: rgba(0, 0, 0, 0.04);
}

@media (max-width: 860px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-left {
    min-height: auto;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .footer-section {
    padding: 38px 8px 0;
  }

  .footer-left,
  .footer-right {
    border-radius: 22px;
  }

  .footer-right {
    padding: 24px;
  }

  .footer-nav-cols {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-subscribe-row {
    width: 100%;
  }

  .footer-lucky-graphic {
    right: 12px;
    top: -28px;
  }

  .lucky-cube {
    width: 72px;
    height: 72px;
  }

  .lucky-cube-mark {
    font-size: 32px;
  }

  .lucky-text {
    font-size: 18px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 850ms var(--ease-slow),
    transform 850ms var(--ease-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wordReveal {
  to {
    transform: translateY(0);
  }
}

@keyframes underline {
  to {
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgb(149 210 243 / 0.48);
  }
  50% {
    box-shadow: 0 0 0 8px rgb(149 210 243 / 0);
  }
}

@keyframes revealClip {
  to {
    clip-path: inset(0 0 0 0 round 26px);
  }
}

@keyframes fillTrack {
  to {
    transform: scaleX(1);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleX(0.38);
    opacity: 0.45;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes slowDrift {
  from {
    transform: scale(1.02) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1.4%, -1.8%);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-head,
  .split,
  .service-accordion-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 26px;
  }

  .hero-feature {
    max-width: 680px;
  }

  .sticky-copy,
  .contact-card,
  .service-preview {
    position: static;
  }

  .compliance-grid,
  .why-grid,
  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programmes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .programme-tall,
  .programme-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .sectors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .site-nav {
    top: 8px;
    width: min(calc(100% - 14px), var(--max));
    gap: 8px;
    padding: 6px 10px;
    min-height: 52px;
    overflow: hidden;
  }

  .brand-logo {
    height: 22px;
  }

  .brand-copy {
    display: none;
  }

  .nav-cta {
    justify-self: end;
    width: auto;
    min-width: 0;
    min-height: 34px;
    padding: 0 13px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: auto;
    padding: 94px 0 46px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 16px), var(--max));
    gap: 26px;
    padding-top: 10px;
  }

  .hero-badge {
    width: fit-content;
    max-width: 100%;
    gap: 8px;
    white-space: normal;
    line-height: 1.25;
  }

  .hero-title {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .hero-title .kingdom {
    font-size: 0.92em;
  }

  .hero-left,
  .hero-sub,
  .hero-trust,
  .hero-trust span,
  .hero-feature,
  .feature-frame {
    min-width: 0;
    max-width: 100%;
  }

  .hero-left {
    overflow: hidden;
    gap: 18px;
  }

  .hero-sub {
    width: min(100%, calc(100vw - 24px));
    overflow-wrap: break-word;
  }

  .button {
    white-space: normal;
    text-align: center;
  }

  .button {
    width: auto;
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 40px;
    white-space: nowrap;
    text-align: center;
  }

  .hero-actions .btn-primary > span:first-child,
  .hero-actions .btn-ghost > span:first-child {
    width: 100%;
    justify-content: center;
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }

  .btn-ghost {
    width: auto;
    min-height: 40px;
  }

  .btn-ghost > span:first-child {
    width: auto;
    padding-inline: 16px;
  }

  .hero-badge {
    margin-top: 12px;
  }

  .hero-vlabel,
  .hero-scroll {
    display: none;
  }

  .feature-frame {
    min-height: 500px;
    border-radius: 20px;
  }

  .hud-top,
  .control-bar {
    grid-template-columns: 1fr;
  }

  .hud-top {
    display: grid;
  }

  .control-bar {
    gap: 7px;
  }

  .compliance-grid,
  .programmes,
  .why-grid,
  form {
    grid-template-columns: 1fr;
  }

  #sectors {
    display: none;
  }

  .proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: calc(100% - 16px);
    border-radius: 18px;
    padding: 4px 0;
  }

  .proof-item {
    padding: 14px 6px;
  }

  .proof-item strong {
    font-size: 1.05rem;
  }

  .proof-item span {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  section {
    padding: 58px 0;
  }

  .wrap {
    width: min(calc(100% - 16px), var(--max));
  }

  .section-head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-head.center {
    text-align: left;
  }

  .compliance-card,
  .programme,
  .reason,
  .service-item,
  form,
  .contact-card {
    border-radius: 18px;
  }

  .compliance-card {
    min-height: auto;
    gap: 22px;
    padding: 22px;
  }

  .compliance-card h3 {
    margin-top: 0;
  }

  .programme,
  .programme-tall,
  .programme-wide {
    grid-column: 1;
    grid-row: auto;
    min-height: auto;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-accordion-trigger {
    gap: 14px;
    padding: 18px 0;
  }

  .service-accordion-panel p {
    padding-left: 0;
  }

  .service-accordion-item.active .service-accordion-panel {
    max-height: 720px;
  }

  .service-preview {
    display: none;
  }

  .service-accordion-panel img {
    display: block;
    width: 100%;
    max-height: 320px;
    margin: 0 0 22px;
    border-radius: 18px;
    object-fit: cover;
  }

  .sector {
    min-height: 128px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .word > i,
  .brand-mark,
  .hero-badge,
  .hero-sub,
  .hero-actions,
  .hero-trust,
  .hero-feature,
  .hero-corner,
  .hero-vlabel,
  .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .feature-frame {
    clip-path: inset(0 0 0 0 round 26px) !important;
  }
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 0;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: var(--white-tint);
  background: transparent;
  font: 600 0.92rem/1 var(--body);
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: filter 260ms var(--ease);
}

.btn-primary > span:first-child,
.btn-ghost > span:first-child {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border: 1px solid rgb(251 252 255 / 0.24);
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 16%, rgb(251 252 255 / 0.38), transparent 34%),
    linear-gradient(135deg, rgb(251 252 255 / 0.28), rgb(251 252 255 / 0.08) 48%, rgb(149 210 243 / 0.16)),
    rgb(31 45 98 / 0.18);
  box-shadow:
    inset 0 1px 0 rgb(251 252 255 / 0.4),
    inset 0 -10px 24px rgb(31 45 98 / 0.18);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.22);
  transition:
    border-color 260ms var(--ease),
    background 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.btn-primary::before,
.btn-ghost::before,
.btn-primary::after,
.btn-ghost::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.btn-primary::before,
.btn-ghost::before {
  inset: 1px;
  z-index: 3;
  background: linear-gradient(105deg, transparent 16%, rgb(251 252 255 / 0.36) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-24%);
  transition:
    opacity 260ms var(--ease),
    transform 520ms var(--ease);
}

.btn-primary::after,
.btn-ghost::after {
  left: 8%;
  right: 8%;
  bottom: -10px;
  z-index: -1;
  height: 22px;
  background: rgb(110 181 210 / 0.42);
  filter: blur(18px);
  opacity: 0;
  transform: scaleX(0.82);
  transition:
    opacity 260ms var(--ease),
    transform 260ms var(--ease),
    background 260ms var(--ease);
}

.btn-primary > span:first-child {
  color: var(--night);
  background:
    radial-gradient(circle at 24% 16%, rgb(251 252 255 / 0.72), transparent 36%),
    linear-gradient(135deg, rgb(251 252 255 / 0.64), rgb(194 228 248 / 0.64) 45%, rgb(149 210 243 / 0.78)),
    var(--accent-bright);
}

.btn-ghost > span:first-child {
  color: currentColor;
  background:
    radial-gradient(circle at 24% 16%, rgb(255 255 255 / 0.32), transparent 36%),
    linear-gradient(135deg, rgb(255 255 255 / 0.18), rgb(255 255 255 / 0.04) 48%, rgb(149 210 243 / 0.10));
  border-color: color-mix(in oklab, currentColor 28%, transparent);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.35),
    inset 0 -10px 24px color-mix(in oklab, currentColor 8%, transparent);
  text-shadow: none;
}

.btn-ghost:hover > span:first-child {
  border-color: color-mix(in oklab, currentColor 44%, transparent);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.5),
    inset 0 -10px 24px color-mix(in oklab, currentColor 12%, transparent);
}

.btn-primary:hover,
.btn-ghost:hover {
  filter: saturate(112%);
}

.btn-primary:hover > span:first-child,
.btn-ghost:hover > span:first-child {
  border-color: rgb(251 252 255 / 0.38);
  box-shadow:
    inset 0 1px 0 rgb(251 252 255 / 0.48),
    inset 0 -10px 24px rgb(31 45 98 / 0.14);
}

.btn-primary:hover::before,
.btn-ghost:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.btn-primary:hover::after,
.btn-ghost:hover::after {
  opacity: 0;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .btn-ghost,
  .btn-primary > span:first-child,
  .btn-ghost > span:first-child,
  .btn-primary::before,
  .btn-ghost::before,
  .btn-primary::after,
  .btn-ghost::after {
    transition: none;
  }
  .btn-primary:hover::before,
  .btn-ghost:hover::before {
    transform: translateX(-24%);
  }
}

.action-mark,
.check-mark {
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

.action-mark::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.action-mark::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 3px;
  width: 11px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.check-mark::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 8px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(42deg);
}

.hero-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.glass-card {
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    oklch(99% 0.004 151 / 0.1),
    oklch(99% 0.004 151 / 0.035)
  );
  box-shadow:
    0 32px 90px oklch(10% 0.035 174 / 0.38),
    inset 0 1px 0 oklch(99% 0.004 151 / 0.1);
  backdrop-filter: blur(22px) saturate(145%);
  padding: 1.5rem;
  color: var(--white-tint);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      oklch(16% 0.045 174 / 0.1),
      oklch(16% 0.045 174 / 0.72)
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 9px,
      oklch(99% 0.004 151 / 0.035) 10px
    );
  pointer-events: none;
  z-index: 0;
}

.glass-stats-head,
.glass-progress,
.glass-divider,
.glass-ministats,
.glass-pills {
  position: relative;
  z-index: 1;
}

.glass-stats-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.glass-stats-icon {
  width: 48px;
  height: 48px;
  background: var(--night);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-stats-value {
  font: 700 1.16rem/1 var(--body);
}

.glass-stats-label {
  font: 700 0.65rem/1 var(--body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.glass-mini-val {
  font: 700 1rem/1 var(--body);
  display: block;
  margin-bottom: 0.3rem;
}

.glass-mini-lbl {
  font: 700 0.55rem/1 var(--body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.glass-marquee {
  padding: 1.35rem 0;
}

.glass-marquee-title {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  color: rgb(251 252 255 / 0.54);
  font: 700 0.56rem/1.3 var(--body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.glass-marquee-strip {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent);
  mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent);
}

.glass-marquee-track {
  display: flex;
  gap: 2.25rem;
  padding-right: 2.25rem;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.glass-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgb(251 252 255 / 0.64);
  opacity: 0.72;
  transition:
    color 260ms var(--ease),
    opacity 260ms var(--ease),
    transform 260ms var(--ease);
}

.glass-marquee-item:hover {
  color: var(--white-tint);
  opacity: 1;
  transform: translateY(-1px);
}

.glass-marquee-item svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--accent-bright);
}

.glass-marquee-item span {
  color: inherit;
  font: 700 0.86rem/1 var(--body);
  letter-spacing: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/riyadh_cyber_bg_1778718009860.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, oklch(0% 0 0) 0%, oklch(0% 0 0) 60%, transparent 100%);
  mask-image: linear-gradient(180deg, oklch(0% 0 0) 0%, oklch(0% 0 0) 60%, transparent 100%);
}

@media (max-width: 720px) {
  .programme .btn-ghost,
  .programme-tall .btn-ghost,
  .programme .btn-ghost > span:first-child,
  .programme-tall .btn-ghost > span:first-child {
    width: auto;
    min-height: 40px;
    align-self: flex-start;
  }

  .programme .btn-ghost > span:first-child,
  .programme-tall .btn-ghost > span:first-child {
    padding: 8px 18px;
    font-size: 0.78rem;
  }

  .hero-feature {
    max-width: 100%;
  }
}
