:root {
  color-scheme: light;
  --ink: #071012;
  --muted: #5c686c;
  --paper: #f7f9f9;
  --panel: #ffffff;
  --line: #dfe6e8;
  --teal: #1490aa;
  --teal-dark: #0b6578;
  --carbon: #05090a;
  --soft: #edf4f5;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.7;
  background:
    linear-gradient(90deg, rgba(20, 144, 170, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 9, 10, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94) 0 48%, rgba(237, 244, 245, 0.82) 48% 100%),
    radial-gradient(circle at 14% 12%, rgba(20, 144, 170, 0.14), transparent 28%);
}

.site-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  align-content: center;
  gap: 22px;
}

.hero {
  min-height: clamp(420px, 64vh, 690px);
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(24px, 5vw, 64px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(90deg, rgba(5, 9, 10, 0.04) 0 1px, transparent 1px 18px);
  box-shadow: 0 24px 70px rgba(7, 16, 18, 0.11);
}

.brand-mark {
  display: grid;
  place-items: center;
  min-height: 280px;
  border-inline-start: 8px solid var(--teal);
  background: var(--panel);
}

.brand-mark img {
  width: min(320px, 76vw);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.hero-copy {
  max-width: 700px;
}

.construction-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 10px 14px;
  border: 1px solid rgba(20, 144, 170, 0.28);
  background: rgba(237, 244, 245, 0.88);
  color: var(--ink);
}

.construction-badge strong,
.construction-badge em {
  display: block;
}

.construction-badge strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.construction-badge em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.35;
}

.badge-icon {
  position: relative;
  width: 42px;
  height: 34px;
  flex: 0 0 auto;
  border: 2px solid var(--carbon);
  border-radius: 4px;
  background:
    linear-gradient(135deg, var(--teal) 0 22%, transparent 22% 34%, var(--teal) 34% 56%, transparent 56% 68%, var(--teal) 68% 100%),
    white;
  box-shadow: inset 0 -12px 0 rgba(5, 9, 10, 0.08);
}

.badge-icon::before {
  position: absolute;
  inset: -8px -2px auto -2px;
  height: 10px;
  content: "";
  border: 2px solid var(--carbon);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(135deg, var(--carbon) 0 20%, white 20% 36%, var(--carbon) 36% 58%, white 58% 74%, var(--carbon) 74% 100%);
}

.badge-icon span {
  position: absolute;
  right: 8px;
  bottom: 7px;
  width: 22px;
  height: 3px;
  background: var(--carbon);
  box-shadow: 0 7px 0 var(--carbon);
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.8vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.18;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.subtitle {
  margin-bottom: 14px;
  color: #283235;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 62ch;
}

.en {
  font-family: "Noto Sans Arabic", "Segoe UI", Arial, sans-serif;
}

.status-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--carbon);
  color: white;
}

.status-block {
  padding: 22px clamp(20px, 4vw, 34px);
  display: grid;
  gap: 4px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
}

.status-block:last-child {
  border-inline-start: 0;
}

.status-block .label {
  color: #7fd2e2;
  margin: 0;
}

.status-block strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.status-block .en {
  color: #c9d7da;
}

.profile {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.profile p {
  color: var(--muted);
  margin-bottom: 0;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.services article {
  min-height: 176px;
  padding: 24px;
  background: var(--panel);
}

.services span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 900;
}

.services p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 2px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 24px, 720px);
    padding: 18px 0;
    align-content: start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .brand-mark {
    min-height: 220px;
    border-inline-start: 0;
    border-top: 6px solid var(--teal);
  }

  .profile,
  .services {
    grid-template-columns: 1fr;
  }

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

  .status-block,
  .status-block:last-child {
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .status-block:first-child {
    border-top: 0;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .hero,
  .profile,
  .status-panel,
  .services {
    border-inline: 0;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .brand-mark img {
    width: min(250px, 82vw);
  }

  footer {
    padding: 18px 20px 24px;
    background: white;
  }
}
