/* Coming Soon — Qvora landing (temporary)
   Gaya: referensi reference_comingsoon.html, disesuaikan dengan
   design token Qvora (DESIGN.md): navy-cobalt, gold, Fraunces + Jakarta Sans. */
:root {
  --navy-deep: #070e1a;
  --navy: #0a1628;
  --cobalt: #0047AB;
  --gold: #C9A227;
  --gold-light: #E7C766;
  --text-soft: #aeb9d2;
  --text-faint: #7c8db5;
  --line: rgba(174, 185, 210, 0.22);
}

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

html, body { height: 100%; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  background-size:cover;
  background-color: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 900px 620px at 12% 8%, rgba(0, 71, 171, 0.35), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 88% 95%, rgba(0, 71, 171, 0.26), transparent 62%),
    radial-gradient(ellipse 1200px 820px at 50% 55%, rgba(17, 38, 70, 0.5), transparent 70%);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', serif; }
a { color: inherit; }

/* ---------- Top bar ---------- */
.topbar {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.2px;
  text-decoration: none;
}
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--navy) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 6px 18px rgba(0, 0, 0, 0.4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px;
}
.soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.soon-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 199, 102, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(231, 199, 102, 0); }
}

/* ---------- Hero ---------- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 64px;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
h1 {
  font-size: clamp(52px, 9vw, 92px);
  font-weight: 500;
  background: linear-gradient(180deg, #ffffff 0%, #c4d2ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 26px;
}
h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 40px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
}
.chips span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Socials ---------- */
.socials { display: flex; align-items: center; gap: 16px; }
.socials a {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(174, 185, 210, 0.28);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.socials a:hover,
.socials a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(231, 199, 102, 0.6);
  transform: translateY(-3px);
}
.socials a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.socials svg { width: 21px; height: 21px; stroke: #c9d5ef; fill: none; }

/* ---------- Footer ---------- */
.footer {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}

@media (max-width: 640px) {
  .topbar { padding: 22px 20px 0; }
  .soon-pill { font-size: 11px; padding: 7px 12px; }
  .subtitle { font-size: 16.5px; }
  .chips { margin-bottom: 40px; }
  .footer { margin-bottom: 25px}
}

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