:root {
  --green-1: #0d3a2e;
  --green-2: #0a2b23;
  --green-3: #061c17;
  --ink: #eaf3ee;
  --ink-dim: #a9c4b8;
  --gold: #d9b45a;
  --gold-soft: #f0d79a;
  --line: rgba(217, 180, 90, 0.24);
  --display: 'Marcellus', Georgia, serif;
  --body: 'Karla', system-ui, sans-serif;
  --arabic: 'Amiri', serif;
}

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

body {
  font-family: var(--body);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* emerald ground */
body.green {
  background:
    radial-gradient(1000px 700px at 50% -5%, #14503e 0%, transparent 62%),
    linear-gradient(180deg, var(--green-1) 0%, var(--green-2) 45%, var(--green-3) 100%);
}

/* geometric lattice pattern (matches the app) */
.pattern {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url('img/pattern.svg');
  background-repeat: repeat;
  background-size: 84px 84px;
  opacity: 0.16;
  -webkit-mask-image: radial-gradient(circle at 50% 34%, #000 30%, rgba(0,0,0,.35) 100%);
          mask-image: radial-gradient(circle at 50% 34%, #000 30%, rgba(0,0,0,.35) 100%);
}

/* soft halo behind the phone */
.glow {
  position: fixed; z-index: 0; pointer-events: none;
  top: 30%; left: 50%; width: 620px; height: 620px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217,180,90,.20) 0%, transparent 60%);
  filter: blur(20px);
}

.stars {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .7;
  background-image:
    radial-gradient(1px 1px at 18% 24%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 72% 16%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 40% 66%, rgba(255,255,255,.35), transparent),
    radial-gradient(1px 1px at 86% 54%, rgba(255,255,255,.3), transparent),
    radial-gradient(1.5px 1.5px at 62% 80%, rgba(255,255,255,.4), transparent);
}

/* ---- splash layout ---- */
.splash {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
  padding: 54px 24px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.brand { display: flex; flex-direction: column; align-items: center; }

.app-icon {
  width: 92px; height: 92px; border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 0 1px var(--line);
  margin-bottom: 16px;
}

.arabic {
  font-family: var(--arabic);
  font-size: clamp(30px, 6vw, 44px);
  color: var(--gold-soft); line-height: 1.2;
}

h1 {
  font-family: var(--display);
  font-size: clamp(38px, 8vw, 60px);
  letter-spacing: .04em; font-weight: 400;
  background: linear-gradient(180deg, #fff 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-top: 2px;
}

.tagline {
  font-family: var(--display);
  font-size: clamp(15px, 3vw, 19px);
  color: var(--gold); letter-spacing: .08em; margin-top: 8px;
}

/* ---- phone mockup ---- */
.phone { margin: 34px 0 8px; perspective: 1200px; }

.phone-frame {
  position: relative;
  width: clamp(230px, 66vw, 290px);
  aspect-ratio: 9 / 19.5;
  background: #05130f;
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 0 0 2px rgba(217,180,90,.35),
    inset 0 0 0 2px rgba(255,255,255,.04);
}
.island {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #000; border-radius: 999px; z-index: 2;
}
.screen {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 33px; display: block;
}

/* ---- coming soon ---- */
.soon-block { margin-top: 26px; max-width: 460px; }
.soon {
  display: inline-block;
  font-family: var(--display); letter-spacing: .32em; text-transform: uppercase;
  font-size: clamp(13px, 3vw, 16px); color: var(--gold);
  padding: 12px 26px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(217,180,90,.07);
}
.lede { margin-top: 22px; color: var(--ink-dim); font-size: 16px; }
.soon-note {
  font-family: var(--arabic); color: var(--gold-soft);
  font-size: 17px; margin-top: 18px; opacity: .92;
}

/* ---- footer ---- */
.foot {
  position: relative; z-index: 1;
  text-align: center; padding: 34px 24px 46px; color: var(--ink-dim); font-size: 14px;
}
.foot a { color: var(--gold); text-decoration: none; }
.foot a:hover { text-decoration: underline; }
