:root {
  --ink: #0e2a24;
  --emerald-950: #032f28;
  --emerald-900: #06483d;
  --emerald-800: #075c4e;
  --emerald-600: #0d8a73;
  --mint: #39c9aa;
  --mint-soft: #dff7ef;
  --gold: #d8aa45;
  --gold-light: #f1d58c;
  --coral: #ff7567;
  --coral-soft: #ffe2dd;
  --sky: #57b9e8;
  --sky-soft: #dff4ff;
  --violet: #8d72d8;
  --sun: #ffca57;
  --paper: #fffdf8;
  --cream: #f8f2e6;
  --muted: #61736e;
  --line: rgba(6, 72, 61, 0.13);
  --shadow: 0 30px 80px rgba(3, 47, 40, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 117, 103, .10), transparent 24rem),
    radial-gradient(circle at 88% 38%, rgba(87, 185, 232, .13), transparent 26rem),
    linear-gradient(120deg, rgba(255, 253, 248, 0.98), rgba(241, 253, 248, 0.96), rgba(255, 244, 229, 0.96), rgba(245, 240, 255, .95));
  background-size: 220% 220%;
  animation: softGradient 16s ease infinite;
}

.arrival-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(135deg, #022f29, #075c4e 58%, #0a6f78);
  animation: introCurtain 4.8s cubic-bezier(.72,0,.2,1) forwards;
}
.arrival-sky {
  position: absolute;
  inset: 0;
  opacity: .3;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,202,87,.9) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 30%, rgba(255,255,255,.85) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 34% 72%, rgba(87,185,232,.9) 0 2px, transparent 3px);
  background-size: 95px 95px, 130px 130px, 115px 115px;
  animation: introSky 3.8s linear both;
}
.arrival-plane {
  position: absolute;
  z-index: 2;
  width: min(520px, 72vw);
  height: auto;
  filter: drop-shadow(0 35px 28px rgba(0,0,0,.32));
  animation: arrivalFlight 4.2s cubic-bezier(.44,.04,.3,1) both;
}
.arrival-mark {
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px 12px 12px;
  opacity: 0;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  animation: arrivalMark 4.3s ease both;
}
.arrival-mark img { width: 52px; height: 52px; object-fit: cover; border-radius: 14px; }
.arrival-mark span { display: grid; gap: 4px; }
.arrival-mark strong { color: var(--gold-light); font-size: 20px; letter-spacing: .22em; }
.arrival-mark small { font-size: 8px; font-weight: 900; letter-spacing: .18em; }

.ambient {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
.ambient-one {
  width: 520px;
  height: 520px;
  top: 60px;
  right: -260px;
  background: radial-gradient(circle, rgba(57, 201, 170, 0.18), transparent 68%);
  animation: ambientDrift 12s ease-in-out infinite alternate;
}
.ambient-two {
  width: 460px;
  height: 460px;
  left: -220px;
  top: 480px;
  background: radial-gradient(circle, rgba(216, 170, 69, 0.15), transparent 68%);
  animation: ambientDrift 15s ease-in-out -4s infinite alternate-reverse;
}
.ambient-three {
  width: 420px;
  height: 420px;
  right: -180px;
  top: 1180px;
  background: radial-gradient(circle, rgba(141, 114, 216, .14), rgba(87, 185, 232, .08) 42%, transparent 70%);
  animation: ambientDrift 18s ease-in-out -7s infinite alternate;
}

.topbar {
  position: relative;
  z-index: 30;
  width: min(1220px, calc(100% - 48px));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  animation: dropIn 650ms ease both;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
}
.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 28px rgba(3, 47, 40, 0.18);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.brand:hover img {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 14px 34px rgba(3, 47, 40, 0.24);
}
.brand span { display: grid; line-height: 1.05; }
.brand strong {
  color: var(--emerald-900);
  font-size: 17px;
  letter-spacing: .2em;
}
.brand small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 11px;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #40564f;
  font-size: 13px;
  font-weight: 800;
}
nav a {
  position: relative;
  padding: 10px 0;
}
nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 220ms ease;
}
nav a:hover::after, nav a:focus-visible::after { width: 100%; }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  color: var(--emerald-900);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.language-button:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 170, 69, 0.5);
  background: #fff;
}
.language-globe {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(216, 170, 69, 0.4);
  border-radius: 50%;
  font-size: 14px;
  animation: gentleSpin 8s linear infinite;
}
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: #fff;
  background: var(--emerald-900);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--emerald-800);
  box-shadow: 0 12px 28px rgba(3, 47, 40, 0.2);
}

main { position: relative; z-index: 2; animation: pageSwap 450ms ease both; }

.hero {
  width: min(1220px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, .92fr);
  align-items: center;
  gap: 68px;
  padding: 68px 0 82px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 660px;
  animation: riseIn 780ms 100ms ease both;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: var(--emerald-800);
  background: rgba(223, 247, 239, 0.72);
  border: 1px solid rgba(13, 138, 115, 0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 170, 69, .14);
  animation: pulseDot 2.2s ease-in-out infinite;
}
h1 {
  max-width: 650px;
  margin: 25px 0 22px;
  color: var(--emerald-950);
  font-size: clamp(52px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.05em;
}
h1 span {
  display: block;
  color: var(--gold);
}
.hero-text {
  max-width: 590px;
  margin: 0;
  color: #465d57;
  font-size: 17px;
  line-height: 1.95;
}
.brand-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 0;
  color: var(--emerald-800);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .015em;
}
.brand-promise span {
  position: relative;
}
.brand-promise span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.button {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  overflow: hidden;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -70%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: rotate(18deg);
  animation: buttonShine 4.6s ease-in-out infinite;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  color: #fff;
  background: var(--emerald-900);
  box-shadow: 0 18px 38px rgba(3, 47, 40, .2);
}
.button-primary:hover {
  background: var(--emerald-800);
  box-shadow: 0 22px 46px rgba(3, 47, 40, .27);
}
.button-secondary {
  color: var(--emerald-900);
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
}

.category-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.category-line span {
  padding: 7px 11px;
  color: #536861;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(6, 72, 61, .09);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}
.category-line span:hover {
  transform: translateY(-2px);
  color: var(--emerald-800);
  border-color: rgba(13, 138, 115, .28);
}

.hero-stage {
  position: relative;
  min-height: 570px;
  isolation: isolate;
  animation: stageReveal 900ms 180ms ease both;
}
.hero-stage::before {
  content: "";
  position: absolute;
  z-index: -4;
  inset: 48px 30px;
  background:
    radial-gradient(circle at 70% 28%, rgba(87,185,232,.34), transparent 31%),
    radial-gradient(circle at 18% 82%, rgba(255,117,103,.2), transparent 35%),
    radial-gradient(circle at 65% 35%, rgba(57, 201, 170, .28), transparent 35%),
    linear-gradient(145deg, var(--emerald-950), #08705e 58%, #075162);
  border-radius: 48% 52% 42% 58% / 58% 40% 60% 42%;
  box-shadow: var(--shadow);
  animation: morphShape 12s ease-in-out infinite alternate;
}
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 28px 10px;
  border: 1px solid rgba(216, 170, 69, .5);
  border-radius: 50%;
  animation: slowRotate 26s linear infinite;
}
.route {
  position: absolute;
  z-index: -2;
  border: 1px dashed rgba(255, 255, 255, .18);
  border-radius: 50%;
}
.route-one {
  width: 450px;
  height: 260px;
  top: 135px;
  left: 45px;
  transform: rotate(-22deg);
  animation: routePulse 4s ease-in-out infinite;
}
.route-two {
  width: 350px;
  height: 420px;
  top: 70px;
  left: 110px;
  border-color: rgba(216, 170, 69, .22);
  transform: rotate(25deg);
  animation: routePulseTwo 4s 1.3s ease-in-out infinite;
}
.route-dots {
  position: absolute;
  z-index: -1;
  inset: 80px;
  opacity: .22;
  background-image: radial-gradient(circle, #fff 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 30%, transparent 75%);
}
.colour-orbit {
  position: absolute;
  z-index: 1;
  inset: 42px 24px;
  border-radius: 50%;
  animation: slowRotate 20s linear infinite;
  pointer-events: none;
}
.colour-orbit span {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid rgba(255,255,255,.78);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(0,0,0,.16);
}
.colour-orbit span:nth-child(1) { top: 13%; left: 20%; background: var(--coral); }
.colour-orbit span:nth-child(2) { top: 22%; right: 8%; background: var(--sun); }
.colour-orbit span:nth-child(3) { right: 14%; bottom: 12%; background: var(--sky); }
.colour-orbit span:nth-child(4) { bottom: 5%; left: 23%; background: var(--violet); }

.flight-track {
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
}
.flight-plane {
  position: absolute;
  width: 330px;
  height: auto;
  left: 50%;
  top: 50%;
  filter: drop-shadow(0 22px 20px rgba(0, 22, 18, .28));
  animation: flightJourney 9s cubic-bezier(.45,.03,.25,1) infinite;
  transform-origin: center;
}
.flight-trail {
  position: absolute;
  width: 140px;
  height: 2px;
  left: 42%;
  top: 62%;
  opacity: .5;
  background: linear-gradient(90deg, transparent, rgba(241, 213, 140, .9));
  filter: blur(.4px);
  transform: rotate(-28deg);
  animation: trailBlink 2.2s ease-in-out infinite;
}

.destination-card {
  position: absolute;
  z-index: 4;
  width: 260px;
  right: 5px;
  bottom: 20px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(0, 31, 26, .22);
  backdrop-filter: blur(12px);
  animation: cardFloat 5.2s ease-in-out infinite;
}
.destination-top {
  display: flex;
  align-items: center;
  gap: 9px;
  direction: ltr;
}
.destination-top img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 10px;
}
.destination-top span {
  color: var(--emerald-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.destination-top i {
  width: 7px;
  height: 7px;
  margin-left: auto;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(57, 201, 170, .13);
  animation: pulseDot 2s ease-in-out infinite;
}
.destination-copy {
  display: grid;
  gap: 5px;
  margin-top: 18px;
}
.destination-copy span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .05em;
}
.destination-copy strong {
  color: var(--emerald-950);
  font-size: 15px;
  line-height: 1.5;
}
.store-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 15px;
}
.store-preview-grid span {
  height: 36px;
  background: linear-gradient(145deg, var(--mint-soft), #f5e5bc);
  border-radius: 9px;
}
.store-preview-grid span:nth-child(2) { background: linear-gradient(145deg, #f4e7c8, #fff); }
.store-preview-grid span:nth-child(3) { background: linear-gradient(145deg, #d5f1e8, #fff); }
.store-preview-grid span:nth-child(4) { background: linear-gradient(145deg, #e7efe9, #f4d892); }

.store-float {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--emerald-950);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 15px;
  box-shadow: 0 15px 38px rgba(0, 31, 26, .18);
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.store-float i {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  transform: rotate(45deg);
}
.store-float-2 i { background: var(--sky); }
.store-float-3 i { background: var(--coral); }
.store-float-4 i { background: var(--violet); }
.store-float-1 { top: 78px; right: 12px; animation: floatOne 5s ease-in-out infinite; }
.store-float-2 { top: 160px; left: -5px; animation: floatTwo 6s .5s ease-in-out infinite; }
.store-float-3 { bottom: 102px; left: 12px; animation: floatOne 5.5s 1s ease-in-out infinite reverse; }
.store-float-4 { top: 265px; right: -22px; animation: floatTwo 6.5s 1.6s ease-in-out infinite reverse; }

.stores-section {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 118px;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, .65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 45px;
}
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.section-heading h2 {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--emerald-950);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.2;
  letter-spacing: -.04em;
}
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.promise-card {
  position: relative;
  min-height: 330px;
  padding: 31px;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 28px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  animation: riseIn 700ms ease both;
}
.promise-card-2 { animation-delay: 100ms; }
.promise-card-3 { animation-delay: 200ms; }
.promise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 170, 69, .45);
  box-shadow: 0 26px 55px rgba(3, 47, 40, .1);
}
.promise-card-2 {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(57,201,170,.2), transparent 45%),
    var(--emerald-900);
  border-color: var(--emerald-900);
}
.promise-card-1 {
  background: linear-gradient(145deg, rgba(255,255,255,.92), var(--coral-soft));
  border-color: rgba(255,117,103,.22);
}
.promise-card-3 {
  background: linear-gradient(145deg, rgba(255,255,255,.92), var(--sky-soft));
  border-color: rgba(87,185,232,.24);
}
.promise-card-1 .promise-line { background: var(--coral); }
.promise-card-3 .promise-line { background: var(--sky); }
.promise-index {
  display: block;
  color: rgba(6,72,61,.28);
  font-family: Georgia, serif;
  font-size: 14px;
}
.promise-card-2 .promise-index { color: rgba(255,255,255,.3); }
.promise-card > strong {
  display: block;
  margin-top: 40px;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.04em;
}
.promise-card h3 {
  margin: 12px 0 11px;
  color: var(--emerald-950);
  font-size: 19px;
}
.promise-card-2 h3 { color: #fff; }
.promise-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.promise-card-2 p { color: rgba(255,255,255,.68); }
.promise-line {
  position: absolute;
  right: 31px;
  bottom: 28px;
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 4px;
  transition: width 250ms ease;
}
.promise-card:hover .promise-line { width: 86px; }

.how-section {
  position: relative;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(470px, 1fr);
  gap: 74px;
  padding: 78px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 92%, rgba(216,170,69,.2), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(57,201,170,.14), transparent 25rem),
    var(--emerald-950);
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.how-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -190px;
  top: -170px;
  border: 1px solid rgba(241,213,140,.22);
  border-radius: 50%;
  animation: slowRotate 24s linear infinite reverse;
}
.how-copy { position: relative; z-index: 2; }
.how-copy .section-kicker { color: var(--gold-light); }
.how-copy h2 {
  margin: 14px 0 20px;
  font-size: clamp(38px, 4.7vw, 60px);
  line-height: 1.22;
  letter-spacing: -.04em;
}
.how-copy > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: 14px;
  line-height: 2;
}
.mini-promise {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--gold-light);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}
.mini-promise i {
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: 50%;
}
.journey-steps {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.13);
}
.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 30px;
  align-items: center;
  gap: 20px;
  min-height: 132px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: padding 220ms ease, background 220ms ease;
}
.journey-steps li:hover {
  padding-inline: 12px;
  background: rgba(255,255,255,.035);
}
.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  font-family: Georgia, serif;
  font-size: 13px;
}
.journey-steps small {
  color: var(--mint);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.journey-steps h3 { margin: 5px 0 6px; font-size: 18px; }
.journey-steps p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.7;
}
.step-arrow {
  color: var(--gold-light);
  font-size: 20px;
  transition: transform 200ms ease;
}
.journey-steps li:hover .step-arrow { transform: translateX(-5px); }
[dir="ltr"] .journey-steps li:hover .step-arrow { transform: translateX(5px); }

.launch-section {
  position: relative;
  width: min(1220px, calc(100% - 48px));
  min-height: 300px;
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 46px 55px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(255,202,87,.42), transparent 21rem),
    radial-gradient(circle at 92% 18%, rgba(87,185,232,.22), transparent 23rem),
    linear-gradient(125deg, #ffe8ce, #fff7ea 43%, #e3f8f1 70%, #e8efff);
  border: 1px solid rgba(216,170,69,.25);
  border-radius: 34px;
}
.launch-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -245px;
  top: -185px;
  border: 1px solid rgba(6,72,61,.1);
  border-radius: 50%;
  animation: slowRotate 32s linear infinite;
}
.launch-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(216,170,69,.12);
}
.launch-orbit span:nth-child(1) { top: 70px; left: 125px; }
.launch-orbit span:nth-child(2) { right: 35px; top: 250px; background: var(--mint); }
.launch-orbit span:nth-child(3) { left: 180px; bottom: 20px; }
.camel-scene {
  position: relative;
  z-index: 2;
  width: 270px;
  min-height: 210px;
  display: grid;
  place-items: end center;
  isolation: isolate;
}
.camel-image {
  position: relative;
  z-index: 3;
  width: 250px;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(74,48,12,.18));
  animation: camelWalk 6.2s ease-in-out infinite;
}
.camel-sun {
  position: absolute;
  z-index: -1;
  width: 135px;
  height: 135px;
  top: 3px;
  left: 6px;
  background: linear-gradient(145deg, var(--sun), var(--coral));
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(255,202,87,.14);
  animation: sunPulse 4s ease-in-out infinite;
}
.camel-ground {
  position: absolute;
  z-index: 1;
  width: 230px;
  height: 25px;
  bottom: 12px;
  background: radial-gradient(ellipse, rgba(91,59,13,.22), transparent 70%);
}
.camel-dust {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  bottom: 25px;
  background: rgba(215,155,70,.5);
  border-radius: 50%;
  filter: blur(1px);
  animation: camelDust 1.4s ease-out infinite;
}
.camel-dust-one { left: 32%; }
.camel-dust-two { left: 42%; animation-delay: .55s; }
.camel-badge {
  position: absolute;
  z-index: 4;
  right: -5px;
  bottom: -5px;
  padding: 8px 12px;
  color: var(--emerald-950);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(3,47,40,.13);
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}
.launch-copy { position: relative; z-index: 2; max-width: 610px; }
.launch-copy > span {
  color: var(--emerald-800);
  font-size: 11px;
  font-weight: 900;
}
.launch-copy h2 {
  margin: 9px 0 13px;
  color: var(--emerald-950);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.04em;
}
.launch-copy p {
  margin: 0;
  color: #596a64;
  font-size: 13px;
  line-height: 1.85;
}
.launch-button {
  position: relative;
  z-index: 2;
  min-width: 180px;
  color: #fff;
  background: var(--emerald-900);
  box-shadow: 0 16px 34px rgba(3,47,40,.16);
}

.contact-section {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 8px 0 110px;
}
.contact-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 38px;
}
.contact-heading .section-kicker { grid-column: 1 / -1; }
.contact-heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--emerald-950);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.2;
  letter-spacing: -.04em;
}
.contact-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-card {
  position: relative;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,170,69,.48);
  box-shadow: 0 22px 46px rgba(3,47,40,.09);
}
.contact-featured {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(57,201,170,.18), transparent 50%),
    var(--emerald-900);
  border-color: var(--emerald-900);
}
.contact-label {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--emerald-950);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(15px, 1.5vw, 20px);
}
.contact-featured strong { color: #fff; }
.contact-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--emerald-800);
  background: rgba(6,72,61,.07);
  border-radius: 50%;
  transition: transform 200ms ease;
}
[dir="rtl"] .contact-arrow { right: auto; left: 24px; }
.contact-featured .contact-arrow {
  color: var(--gold-light);
  background: rgba(255,255,255,.1);
}
.contact-card:hover .contact-arrow { transform: rotate(12deg) scale(1.06); }

footer {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 48px));
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
}
.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 11px;
}
.footer-brand span { display: grid; }
.footer-brand strong {
  color: var(--emerald-900);
  font-size: 13px;
  letter-spacing: .18em;
}
.footer-brand small { margin-top: 3px; color: var(--gold); font-size: 9px; }
footer p { font-size: 11px; font-weight: 800; }
footer > small {
  justify-self: end;
  direction: ltr;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10px;
}

@keyframes softGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes ambientDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(30px, -28px, 0) scale(1.08); }
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pageSwap {
  from { opacity: .25; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes stageReveal {
  from { opacity: 0; transform: scale(.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes morphShape {
  0% { border-radius: 48% 52% 42% 58% / 58% 40% 60% 42%; transform: rotate(-1deg); }
  50% { border-radius: 55% 45% 57% 43% / 44% 58% 42% 56%; transform: rotate(2deg) scale(1.015); }
  100% { border-radius: 43% 57% 49% 51% / 61% 43% 57% 39%; transform: rotate(-2deg); }
}
@keyframes slowRotate {
  to { transform: rotate(360deg); }
}
@keyframes routePulse {
  0%, 100% { opacity: .45; transform: rotate(-22deg) scale(1); }
  50% { opacity: .85; transform: rotate(-22deg) scale(1.04); }
}
@keyframes routePulseTwo {
  0%, 100% { opacity: .45; transform: rotate(25deg) scale(1); }
  50% { opacity: .85; transform: rotate(25deg) scale(1.04); }
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 5px rgba(216,170,69,.13); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 9px rgba(216,170,69,0); }
}
@keyframes gentleSpin { to { transform: rotate(360deg); } }
@keyframes buttonShine {
  0%, 55% { left: -70%; }
  80%, 100% { left: 135%; }
}
@keyframes flightJourney {
  0% { opacity: 0; transform: translate(-420px, 250px) rotate(-12deg) scale(.62); }
  12% { opacity: 1; }
  42% { opacity: 1; transform: translate(-135px, 80px) rotate(-5deg) scale(.9); }
  67% { opacity: 1; transform: translate(40px, -45px) rotate(4deg) scale(1); }
  88% { opacity: 1; }
  100% { opacity: 0; transform: translate(335px, -245px) rotate(11deg) scale(.72); }
}
@keyframes trailBlink {
  0%, 100% { opacity: .2; transform: rotate(-28deg) scaleX(.65); }
  50% { opacity: .7; transform: rotate(-28deg) scaleX(1); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes floatOne {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes floatTwo {
  0%, 100% { transform: translateX(0) translateY(0) rotate(-2deg); }
  50% { transform: translateX(7px) translateY(-8px) rotate(2deg); }
}
@keyframes camelWalk {
  0% { transform: translateX(-28px) translateY(0) rotate(-1deg); }
  12% { transform: translateX(-18px) translateY(-7px) rotate(1deg); }
  25% { transform: translateX(-7px) translateY(0) rotate(-1deg); }
  38% { transform: translateX(5px) translateY(-8px) rotate(1deg); }
  50% { transform: translateX(18px) translateY(0) rotate(-1deg); }
  63% { transform: translateX(28px) translateY(-7px) rotate(1deg); }
  75% { transform: translateX(12px) translateY(0) rotate(-1deg); }
  88% { transform: translateX(-8px) translateY(-6px) rotate(1deg); }
  100% { transform: translateX(-28px) translateY(0) rotate(-1deg); }
}
@keyframes camelDust {
  0% { opacity: 0; transform: translate(0,0) scale(.4); }
  30% { opacity: .7; }
  100% { opacity: 0; transform: translate(-24px,-18px) scale(1.8); }
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); filter: saturate(1); }
  50% { transform: scale(1.06); filter: saturate(1.18); }
}
@keyframes arrivalFlight {
  0% { opacity: 0; transform: translate(-105vw, 45vh) rotate(-12deg) scale(.45); }
  16% { opacity: 1; }
  54% { opacity: 1; transform: translate(-2vw, -3vh) rotate(2deg) scale(1); }
  70% { opacity: 1; transform: translate(6vw, -7vh) rotate(5deg) scale(1.04); }
  100% { opacity: 0; transform: translate(105vw, -58vh) rotate(13deg) scale(.62); }
}
@keyframes arrivalMark {
  0%, 38% { opacity: 0; transform: translateY(18px) scale(.94); }
  50%, 72% { opacity: 1; transform: translateY(78px) scale(1); }
  100% { opacity: 0; transform: translateY(70px) scale(.98); }
}
@keyframes introSky {
  from { transform: translateX(0); }
  to { transform: translateX(-90px); }
}
@keyframes introCurtain {
  0%, 82% { visibility: visible; opacity: 1; }
  99% { visibility: visible; opacity: 0; }
  100% { visibility: hidden; opacity: 0; }
}

@media (max-width: 1020px) {
  .topbar { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
  }
  .hero-copy { max-width: 760px; }
  .hero-stage { min-height: 600px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 600px; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .promise-card-3 { grid-column: 1 / -1; }
  .how-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 58px;
  }
  .launch-section { grid-template-columns: 230px 1fr; }
  .camel-scene { width: 230px; }
  .camel-image { width: 220px; }
  .launch-button { grid-column: 2; justify-self: start; }
  .contact-heading { grid-template-columns: 1fr; gap: 18px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 660px) {
  .topbar, .hero, .stores-section, .how-section, .launch-section,
  .contact-section, footer { width: min(100% - 28px, 1220px); }
  .topbar { min-height: 78px; gap: 12px; }
  .brand img { width: 42px; height: 42px; border-radius: 12px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 9px; }
  .header-actions { gap: 6px; }
  .language-button { min-height: 38px; padding: 0 11px; font-size: 10px; }
  .language-globe { width: 18px; height: 18px; font-size: 11px; }
  .nav-cta { display: none; }
  .hero { padding: 44px 0 65px; }
  h1 { margin-top: 21px; font-size: clamp(43px, 14vw, 62px); }
  .hero-text { font-size: 15px; }
  .brand-promise { gap: 12px; font-size: 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-stage {
    min-height: 500px;
    margin: -20px -32px -25px;
    transform: scale(.88);
  }
  .hero-stage::before { inset: 55px 25px; }
  .flight-plane { width: 270px; }
  .destination-card { right: 20px; width: 230px; }
  .store-float-1 { right: 18px; }
  .store-float-2 { left: 8px; }
  .store-float-3 { left: 18px; }
  .store-float-4 { right: 2px; }
  .stores-section { padding: 76px 0 86px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-card-3 { grid-column: auto; }
  .promise-card { min-height: 285px; }
  .how-section {
    gap: 30px;
    margin-bottom: 76px;
    padding: 38px 24px;
    border-radius: 28px;
  }
  .journey-steps li {
    grid-template-columns: 44px 1fr 22px;
    gap: 13px;
    min-height: 122px;
  }
  .step-number { width: 40px; height: 40px; }
  .journey-steps p { font-size: 11px; }
  .launch-section {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 76px;
    padding: 34px 24px;
    border-radius: 28px;
  }
  .camel-scene { width: 100%; min-height: 205px; }
  .camel-image { width: min(270px, 90%); height: 190px; }
  .camel-sun { left: 12%; }
  .camel-badge { right: 7%; }
  .launch-button { grid-column: auto; width: 100%; }
  .contact-section { padding-bottom: 78px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card:last-child { grid-column: auto; }
  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 13px;
    padding: 32px 0;
    text-align: center;
  }
  .footer-brand, footer > small { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .flight-plane {
    opacity: 1;
    transform: translate(-30px, -30px) rotate(2deg) scale(.9);
  }
  .arrival-intro { display: none; }
}

/* Static Cloudflare language switch */
.text-en { display: none !important; }
html[data-language="en"] .text-ar { display: none !important; }
html[data-language="en"] .text-en { display: inline !important; }
.headline-accent { display: block !important; color: var(--gold) !important; }
h1 > .text-ar,
h1 > .text-en { color: var(--emerald-950); }
.headline-accent .text-ar,
.headline-accent .text-en { color: inherit; }
html[data-language="en"] .step-arrow { transform: rotate(180deg); }
