:root {
  --dock-h: 126px;
  --silver: #d9dbdd;
  --silver-soft: #aeb4ba;
  --white: #ffffff;
  --black: #020303;
  --glass: rgba(255,255,255,.055);
  --pink1: #ffd7ef;
  --pink2: #f8a9d0;
  --pink3: #ec79bb;
  --pink4: #d95aa6;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.085), transparent 24%),
    radial-gradient(circle at 50% 62%, rgba(255,255,255,.032), transparent 34%),
    linear-gradient(180deg, #101417 0%, #07090a 52%, #000 100%);
  color: var(--silver);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.66) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.010) 0px,
      rgba(255,255,255,.010) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: .78;
}

/* splash */
.splash-lock {
  overflow: hidden;
}

.splash-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .65s ease, visibility .65s ease;
}

.splash-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.splash-skip {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100000;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.34);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font: 700 14px/1 Arial, sans-serif;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.landing {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--dock-h));
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 46px);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,.08), transparent 25%),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.20));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 54vw);
  max-height: calc(100dvh - var(--dock-h) - 52px);
  display: grid;
  place-items: center;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - var(--dock-h) - 52px);
  object-fit: contain;
  filter:
    drop-shadow(0 14px 22px rgba(0,0,0,.58))
    drop-shadow(0 36px 52px rgba(0,0,0,.45));
}

.bottom-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: var(--dock-h);
  z-index: 20;
  padding: 18px clamp(18px, 4vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.68) 24%, rgba(0,0,0,.94) 100%);
  border-top: 1px solid rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
}

.legal {
  min-width: 0;
  text-align: left;
}

.legal-en,
.legal-ar {
  color: var(--silver-soft);
  text-shadow: 0 8px 18px rgba(0,0,0,.5);
}

.legal-en {
  font-size: clamp(13px, .9vw, 16px);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-ar {
  display: none;
  font-family: Tahoma, Arial, sans-serif;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.5;
}

html[data-lang="ar"] .legal {
  text-align: right;
}

html[data-lang="ar"] .legal-en,
html[data-lang="ar"] .text-en {
  display: none;
}

html[data-lang="en"] .legal-ar,
html[data-lang="en"] .text-ar {
  display: none;
}

html[data-lang="ar"] .legal-ar,
html[data-lang="ar"] .text-ar {
  display: inline;
}

.dock-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

html[data-lang="ar"] .dock-actions {
  flex-direction: row-reverse;
}

.lang-toggle,
.dock-btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.16);
}

.lang-toggle span {
  opacity: .45;
}

html[data-lang="en"] .lang-en,
html[data-lang="ar"] .lang-ar {
  opacity: 1;
  color: #fff;
}

.dock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 184px;
  padding-left: 16px;
  padding-right: 18px;
  position: relative;
  overflow: hidden;
}

.dock-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 18% 50%, rgba(255,255,255,.08), transparent 30%);
  pointer-events: none;
}

.dock-btn-primary {
  color: #090b0d;
  background: linear-gradient(180deg, #f4f4f5 0%, #c3c7cc 100%);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 12px 30px rgba(0,0,0,.30);
}

.dock-btn-secondary {
  color: var(--silver);
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.20);
}

.btn-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.btn-icon-boutique .btn-svg path,
.btn-icon-instagram .btn-svg rect,
.btn-icon-instagram .btn-svg circle {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.dock-btn-primary .btn-icon-boutique .btn-svg path {
  stroke: #0f1215;
}

.dock-btn-secondary .btn-icon-instagram .btn-svg rect,
.dock-btn-secondary .btn-icon-instagram .btn-svg circle {
  stroke: #eceff2;
}

.dock-btn-secondary .btn-icon-instagram .svg-dot {
  fill: #eceff2;
  stroke: none;
}

.pink-gem {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  border-radius: 1px;
  background: linear-gradient(135deg, var(--pink1), var(--pink2) 40%, var(--pink3) 70%, var(--pink4));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.18),
    0 0 12px rgba(248,169,208,.55);
}

.pink-gem::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,0) 52%);
  opacity: .7;
}

html[data-lang="ar"] .dock-btn,
html[data-lang="ar"] .lang-toggle,
html[data-lang="ar"] .legal-ar {
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

html[data-lang="ar"] .dock-btn {
  min-width: 170px;
}

html[data-lang="ar"] .dock-btn .text-ar {
  line-height: 1;
}

/* 4k / wide desktop */
@media (min-width: 1800px) and (min-height: 950px) {
  .hero-content {
    width: min(940px, 45vw);
  }
}

/* normal laptops */
@media (max-width: 1440px) {
  .hero-content {
    width: min(720px, 58vw);
  }
}

/* tablets */
@media (max-width: 1024px) {
  :root {
    --dock-h: 146px;
  }

  .hero-content {
    width: min(700px, 78vw);
    max-height: calc(100dvh - var(--dock-h) - 42px);
  }

  .hero-logo {
    max-height: calc(100dvh - var(--dock-h) - 42px);
  }

  .bottom-dock {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .legal,
  html[data-lang="ar"] .legal {
    text-align: center;
  }

  .dock-actions,
  html[data-lang="ar"] .dock-actions {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* phones */
@media (max-width: 640px) {
  :root {
    --dock-h: 186px;
  }

  .hero {
    padding: 14px;
  }

  .hero-content {
    width: min(490px, 96vw);
    max-height: calc(100dvh - var(--dock-h) - 26px);
  }

  .hero-logo {
    max-height: calc(100dvh - var(--dock-h) - 26px);
  }

  .bottom-dock {
    padding: 15px 14px 18px;
  }

  .legal-en {
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.45;
  }

  .legal-ar {
    font-size: 15px;
  }

  .dock-actions,
  html[data-lang="ar"] .dock-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
  }

  .lang-toggle,
  .dock-btn {
    min-height: 42px;
    padding: 0 13px;
    font-size: 11px;
  }

  .dock-btn {
    min-width: 138px;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .btn-svg {
    width: 18px;
    height: 18px;
  }
}

/* short desktop browser windows */
@media (max-height: 780px) and (min-width: 700px) {
  :root {
    --dock-h: 108px;
  }

  .hero-content {
    width: min(610px, 42vw);
    max-height: calc(100dvh - var(--dock-h) - 34px);
  }

  .hero-logo {
    max-height: calc(100dvh - var(--dock-h) - 34px);
  }

  .bottom-dock {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .dock-btn,
  .lang-toggle {
    min-height: 40px;
  }
}
