:root {
  --navy: #161B30;
  --navy-deep: #10142A;
  --maroon: #5E2129;
  --maroon-bright: #8A1E30;
  --cream: #F7F5F0;
  --muted: #A9AFC4;
  --line: rgba(247, 245, 240, 0.14);
}

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

html, body { height: 100%; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(138, 30, 48, 0.28), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(94, 33, 41, 0.22), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

body.rtl { font-family: "Cairo", system-ui, sans-serif; }

/* Ghost comma backdrop */
.ghost-comma {
  position: fixed;
  inset-inline-end: -8vw;
  top: 8vh;
  width: min(52vw, 620px);
  color: var(--cream);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* Header */
.top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 56px);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--cream);
}

.wordmark .mark {
  background: var(--cream);
  border-radius: 12px;
  padding: 5px;
  flex-shrink: 0;
}

.wordmark .name {
  display: block;
  font-family: "Sora", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.rtl .wordmark .name { letter-spacing: 0.02em; }

.wordmark .sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.rtl .wordmark .sub { letter-spacing: 0; font-size: 0.78rem; }

.lang-switch {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 20px;
  transition: background 0.2s, border-color 0.2s;
  font-family: "Cairo", "Manrope", sans-serif;
}

.lang-switch:hover { background: rgba(247, 245, 240, 0.08); border-color: rgba(247, 245, 240, 0.3); }

/* Main stage */
.stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px clamp(20px, 5vw, 56px) 60px;
  max-width: 1100px;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

.rtl .eyebrow { letter-spacing: 0.02em; font-size: 0.95rem; }

h1 {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.rtl h1 {
  font-family: "Cairo", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

h1 .comma { color: var(--maroon-bright); }

.lede {
  margin-top: 26px;
  max-width: 56ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--muted);
}

.soon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rtl .soon { letter-spacing: 0.02em; font-size: 1.05rem; }

.soon .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--maroon-bright);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(138, 30, 48, 0.55); }
  50% { box-shadow: 0 0 0 10px rgba(138, 30, 48, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .soon .dot { animation: none; }
}

/* Footer */
.bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.socials { display: flex; gap: 22px; }

.socials a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.socials a:hover { color: var(--cream); }

.domain {
  color: var(--muted);
  letter-spacing: 0.08em;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
}

@media (max-width: 560px) {
  .wordmark .sub { display: none; }
  .ghost-comma { width: 80vw; top: auto; bottom: -6vh; }
}
