
:root {
  --bg: #050b12;
  --bg-2: #071521;
  --blue: #0a2540;
  --green: #00c878;
  --sand: #d6a94a;
  --white: #ffffff;
  --muted: #aab7c4;
  --line: rgba(255,255,255,.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--white);
}

a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 76px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: rgba(5, 11, 18, .48);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,.9);
}

.main-nav a:hover { color: var(--green); }

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 6% 80px;
  background:
    linear-gradient(90deg, rgba(5,11,18,.92), rgba(5,11,18,.38), rgba(5,11,18,.95)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content { max-width: 780px; }

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(32px, 4.7vw, 58px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

h3 {
  font-size: 25px;
  margin-bottom: 16px;
}

.subtitle {
  max-width: 700px;
  color: #d8e0e8;
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn.primary {
  background: var(--green);
  color: #02120a;
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
}

.section {
  padding: 110px 6%;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

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

.card {
  min-height: 240px;
  display: block;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--blue), var(--bg-2));
  text-decoration: none;
}

.card:hover {
  border-color: rgba(0,200,120,.55);
  transform: translateY(-3px);
  transition: .2s ease;
}

.card p,
.split-content p,
.partner-highlight p,
.large-text,
.legal p,
.contact-box p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.mena-section {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 110px 6%;
  background:
    linear-gradient(90deg, rgba(5,11,18,.98), rgba(5,11,18,.54), rgba(5,11,18,.25)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.split-content { max-width: 760px; }

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}

.partner-highlight {
  text-align: center;
  background: radial-gradient(circle at top, rgba(0,200,120,.14), transparent 36%), var(--bg-2);
}

.partner-highlight p {
  max-width: 860px;
  margin: 0 auto 30px;
}

.subpage-hero {
  min-height: 56vh;
  padding: 140px 6% 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(5,11,18,.45), rgba(5,11,18,.95)),
    url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.legal-hero {
  min-height: 38vh;
  background: linear-gradient(180deg, var(--blue), var(--bg));
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: start;
}

.list-panel {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 28px;
  background: rgba(255,255,255,.04);
}

.list-panel p {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--white);
}

.list-panel p:last-child { border-bottom: 0; }

.large-text {
  max-width: 1050px;
  font-size: clamp(22px, 3vw, 36px);
  color: #d8e0e8;
}

.contact-box,
.legal {
  max-width: 900px;
}

.legal h2 {
  font-size: 26px;
  margin-top: 32px;
}

.site-footer {
  padding: 42px 6%;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: #03070d;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #8e9aaa;
}

.site-footer p { margin-top: 8px; }

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 6% 24px;
    background: rgba(5, 11, 18, .98);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .brand img { height: 48px; }

  .cards,
  .two-column {
    grid-template-columns: 1fr;
  }

  .section,
  .mena-section {
    padding: 76px 6%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand img { height: 42px; }

  .main-nav { top: 68px; padding-left: 18px; padding-right: 18px; }

  .hero {
    min-height: 92vh;
    padding: 110px 18px 60px;
    background-position: center;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  h2 { font-size: 33px; }

  .subtitle {
    font-size: 17px;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section,
  .mena-section,
  .subpage-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .card {
    padding: 26px;
    min-height: auto;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
