:root {
  color-scheme: dark;
  --ink: #f4f8ff;
  --muted: #9aabc1;
  --subtle: #8192a8;
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-800: #0b1b30;
  --cyan: #42d9ff;
  --blue: #3787ff;
  --mint: #80f0cd;
  --amber: #f2b84b;
  --line: rgba(157, 190, 229, 0.15);
  --panel: rgba(9, 24, 43, 0.62);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--navy-950);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -18%, rgba(48, 115, 208, 0.22), transparent 44%),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 52%, #061321 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, rgba(5, 11, 20, 0) 60%, rgba(5, 11, 20, 0.8));
  content: "";
  pointer-events: none;
}

.grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(107, 157, 211, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 157, 211, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0.13;
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite alternate;
}

.ambient-one {
  top: 5%;
  right: -17rem;
  background: var(--cyan);
}

.ambient-two {
  bottom: -22rem;
  left: -14rem;
  background: var(--blue);
  animation-delay: -3s;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 49px;
  height: 49px;
  filter: drop-shadow(0 8px 20px rgba(39, 187, 255, 0.2));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0.16em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.region-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(128, 240, 205, 0.09), 0 0 18px rgba(128, 240, 205, 0.55);
}

.hero {
  flex: 1;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(78px, 10vw, 142px) 0 clamp(68px, 9vw, 120px);
  text-align: center;
}

.status-pill {
  width: fit-content;
  margin: 0 auto 34px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(101, 196, 255, 0.2);
  border-radius: 999px;
  color: #b6cce2;
  background: rgba(16, 41, 69, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-signal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(242, 184, 75, 0.72);
  animation: pulse 2.2s ease-out infinite;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.15rem, 7.4vw, 7rem);
  font-weight: 720;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(110deg, #f8fbff 2%, #86dfff 50%, #5596ff 98%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 640px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.19rem);
  line-height: 1.8;
}

.build-indicator {
  height: 28px;
  margin: 35px auto 25px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
}

.build-indicator span {
  width: 4px;
  border-radius: 5px;
  background: linear-gradient(to top, var(--blue), var(--cyan));
  box-shadow: 0 0 13px rgba(66, 217, 255, 0.35);
  animation: meter 1.3s ease-in-out infinite alternate;
}

.build-indicator span:nth-child(1) { height: 9px; animation-delay: -0.8s; }
.build-indicator span:nth-child(2) { height: 17px; animation-delay: -0.4s; }
.build-indicator span:nth-child(3) { height: 27px; }
.build-indicator span:nth-child(4) { height: 17px; animation-delay: -0.4s; }
.build-indicator span:nth-child(5) { height: 9px; animation-delay: -0.8s; }

.arabic-message {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

.arabic-message strong {
  color: #dfeaff;
  font-size: 1.05rem;
  font-weight: 650;
}

.arabic-message span {
  font-size: 0.88rem;
}

.service-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-line article {
  min-height: 120px;
  padding: 26px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.service-line article + article {
  border-left: 1px solid var(--line);
}

.service-number {
  color: var(--cyan);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-line article div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-line strong {
  font-size: 0.9rem;
  letter-spacing: 0.015em;
}

.service-line article div span {
  color: var(--subtle);
  font-size: 0.78rem;
  line-height: 1.5;
}

.site-footer {
  padding: 30px 0 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  color: var(--subtle);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  display: flex;
  gap: 14px;
}

.legal-name {
  max-width: 520px;
  text-align: right;
  line-height: 1.55;
  text-transform: uppercase;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(242, 184, 75, 0.38), 0 0 14px rgba(242, 184, 75, 0.55); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(242, 184, 75, 0), 0 0 14px rgba(242, 184, 75, 0.2); }
}

@keyframes meter {
  from { transform: scaleY(0.55); opacity: 0.45; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes breathe {
  from { transform: scale(0.92); opacity: 0.09; }
  to { transform: scale(1.08); opacity: 0.16; }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    min-height: 92px;
  }

  .region-chip {
    font-size: 0;
  }

  .region-chip::after {
    content: "UAE";
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 78px;
  }

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

  .service-line article {
    min-height: auto;
  }

  .service-line article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-name {
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 24px, 480px);
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy span {
    font-size: 0.6rem;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .status-pill {
    font-size: 0.61rem;
    letter-spacing: 0.09em;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.3rem);
  }

  .hero {
    padding: 64px 0 58px;
  }

  .site-footer p:first-child {
    flex-direction: column;
    gap: 5px;
  }
}

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

@media (prefers-contrast: more) {
  :root {
    --muted: #c7d6e8;
    --subtle: #aebed1;
    --line: rgba(210, 232, 255, 0.38);
  }
}
