:root {
  --bg: #090312;
  --bg-2: #140527;
  --card: rgba(255, 255, 255, 0.06);
  --card-2: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.58);

  --qatar-purple: #8b2c91;
  --qatar-gold: #ffd56a;
  --qatar-amber: #ffb703;

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  background: radial-gradient(1200px 600px at 15% 10%, rgba(139, 44, 145, 0.22), transparent 70%),
    radial-gradient(900px 560px at 90% 15%, rgba(255, 183, 3, 0.18), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
}

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

a:hover {
  color: var(--qatar-gold);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: #111;
  border: 1px solid var(--border);
  z-index: 1000;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(9, 3, 18, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__word {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 22px;
}

.brand__region {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.brand__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--qatar-gold), var(--qatar-purple));
  box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.08);
}

.nav__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav__link {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.nav__link:hover {
  color: var(--text);
}

.nav__cta {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(90deg, rgba(255, 183, 3, 0.94), rgba(255, 213, 106, 0.94));
  color: #1b0a29;
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.16);
}

.nav__cta:hover {
  color: #1b0a29;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: 74px 0 44px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(680px 380px at 20% 25%, rgba(139, 44, 145, 0.26), transparent 70%),
    radial-gradient(640px 340px at 80% 20%, rgba(255, 183, 3, 0.22), transparent 70%);
  opacity: 0.95;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.badge__sep {
  opacity: 0.7;
}

.hero__title {
  margin: 14px 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(34px, 4.6vw, 58px);
}

.hero__subtitle {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 18px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button--primary {
  color: #1b0a29;
  background: linear-gradient(90deg, var(--qatar-amber), var(--qatar-gold));
  box-shadow: 0 18px 40px rgba(255, 183, 3, 0.18);
}

.button--primary:hover {
  color: #1b0a29;
  transform: translateY(-1px);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.button--ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}

.button--full {
  width: 100%;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 10px;
  transform: translateY(1px);
}

.dot--ok {
  background: radial-gradient(circle at 30% 30%, #4ade80, #16a34a);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.12);
}

.dot--gold {
  background: radial-gradient(circle at 30% 30%, var(--qatar-gold), var(--qatar-amber));
  box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.12);
}

.hero__visual {
  position: relative;
}

.hero__arabic {
  position: absolute;
  right: 18px;
  bottom: -6px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: 0.02em;
  color: rgba(255, 213, 106, 0.36);
  user-select: none;
}

.mock {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mock__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.16);
}

.mock__dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 6px;
  background: rgba(255, 255, 255, 0.18);
}

.mock__pill {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}

.mock__body {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock__col {
  display: grid;
  gap: 12px;
}

.mock__card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
}

.mock__card--glass {
  background: linear-gradient(180deg, rgba(255, 213, 106, 0.12), rgba(139, 44, 145, 0.1));
  border-color: rgba(255, 213, 106, 0.22);
}

.mock__card--accent {
  background: linear-gradient(135deg, rgba(139, 44, 145, 0.18), rgba(255, 183, 3, 0.12));
  border-color: rgba(255, 255, 255, 0.14);
}

.mock__kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
  margin-bottom: 8px;
}

.mock__headline {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.mock__meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.mock__swatches {
  display: flex;
  gap: 8px;
  margin: 6px 0 10px;
}

.swatch {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.swatch--a { background: #f3efe6; }
.swatch--b { background: #c9b29b; }
.swatch--c { background: #7f6a5b; }
.swatch--d { background: #2d2b2f; }
.swatch--e { background: linear-gradient(135deg, #8b2c91, #ffb703); }

.mock__list {
  margin: 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  display: grid;
  gap: 8px;
}

.pill {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-right: 8px;
}

.pill--ok {
  background: rgba(74, 222, 128, 0.16);
  color: #bbf7d0;
  border: 1px solid rgba(74, 222, 128, 0.22);
}

.pill--warn {
  background: rgba(255, 183, 3, 0.14);
  color: #ffe8b0;
  border: 1px solid rgba(255, 183, 3, 0.22);
}

.section {
  padding: 56px 0;
}

.section--tight {
  padding: 34px 0;
}

.section--light {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section__title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-size: clamp(26px, 3.2vw, 40px);
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.card__text {
  margin: 0;
  color: var(--muted);
}

.cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(139, 44, 145, 0.18), rgba(255, 183, 3, 0.10));
  padding: 18px;
  box-shadow: var(--shadow);
}

.cta__title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  margin: 0 0 8px;
  font-size: 30px;
}

.cta__text {
  margin: 0 0 14px;
  color: var(--muted);
}

.cta__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 3, 18, 0.55);
  padding: 14px;
}

.field {
  margin-bottom: 12px;
}

.label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.input:focus {
  border-color: rgba(255, 183, 3, 0.35);
  box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.12);
}

.fineprint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.form__status {
  margin: 10px 0 0;
  font-weight: 700;
  min-height: 1.4em;
}

.form__status[data-kind="success"] {
  color: #bbf7d0;
}

.form__status[data-kind="error"] {
  color: #fecaca;
}

.button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.faq__item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq__item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal {
  max-width: 860px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.legal__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.legal__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copy {
  margin: 0;
  color: var(--muted-2);
  font-weight: 650;
}

.footer__links {
  display: flex;
  gap: 14px;
  font-weight: 700;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .nav__link {
    display: none;
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 52px;
  }
  .hero__subtitle {
    font-size: 16px;
  }
  .button {
    width: 100%;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
