:root {
  --bg:        #f5efe3;  /* warm ivory */
  --bg-2:      #efe6d4;  /* sand */
  --panel:     #fffdf7;  /* cream */
  --gold:      #b08218;  /* deep gold */
  --gold-soft: #caa23f;  /* lit gold */
  --gold-deep: #8a6412;  /* antique gold */
  --ink:       #2a2218;  /* espresso */
  --muted:     #8a7d63;  /* soft brown */
  --line:      #ddd0b3;  /* soft sand line */
}

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

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, #fffdf7 0%, var(--bg) 52%),
    var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 48px 24px 28px;
}

/* ── Atmosphere ── */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 520px; height: 520px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(202,162,63,.40), transparent 68%);
  animation: drift 14s ease-in-out infinite;
}
.glow-2 {
  width: 360px; height: 360px;
  bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(176,130,24,.26), transparent 70%);
  animation: drift 18s ease-in-out infinite reverse;
}
@keyframes drift {
  0%,100% { transform: translate(-50%, 0) scale(1); }
  50%     { transform: translate(-50%, 26px) scale(1.06); }
}

/* faint paper grain */
.grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: .06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Stage ── */
.stage {
  position: relative;
  z-index: 2;
  max-width: 560px;
  width: 100%;
  margin: auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Logo ── */
.logo-wrap {
  position: relative;
  width: 112px; height: 112px;
  display: grid; place-items: center;
  margin-bottom: 26px;
}
.logo {
  width: 92px; height: 92px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--panel);
  filter: drop-shadow(0 10px 24px rgba(80,60,20,.18));
}
.logo-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(from 0deg, transparent, var(--gold-soft), var(--gold-deep), transparent 70%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
          mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Brand wordmark ── */
.brand {
  display: flex;
  flex-direction: column;
  line-height: .92;
  margin-bottom: 22px;
}
.brand-top {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(18px, 5vw, 24px);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: .42em;
}
.brand-bot {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(34px, 10vw, 52px);
  letter-spacing: .04em;
  background: linear-gradient(180deg, var(--ink), var(--gold) 75%, var(--gold-deep));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ── Coming-soon pill ── */
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--gold-deep);
  padding: 7px 16px 7px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(176,130,24,.07);
  margin-bottom: 30px;
}
.badge-soon .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(176,130,24,.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(176,130,24,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(176,130,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(176,130,24,0); }
}

/* ── Headline ── */
.headline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(40px, 12vw, 68px);
  line-height: 1.02;
  letter-spacing: .01em;
  margin-bottom: 18px;
  color: var(--ink);
}
.headline em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.lede {
  max-width: 420px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 38px;
}

/* ── Store badges ── */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}
.store {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  min-width: 188px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  cursor: not-allowed;
  user-select: none;
  text-align: left;
  box-shadow: 0 6px 18px rgba(80,60,20,.08);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
}
.store:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  box-shadow: 0 12px 26px rgba(80,60,20,.14);
}
.store-ico { width: 26px; height: 26px; flex: none; fill: var(--ink); }
.store-txt { display: flex; flex-direction: column; line-height: 1.15; }
.store-sm { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.store-lg { font-size: 17px; font-weight: 500; }

.ribbon {
  position: absolute;
  top: -9px; right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fffdf7;
  background: linear-gradient(120deg, var(--gold), var(--gold-deep));
  padding: 3px 9px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(80,60,20,.22);
}

/* ── Secondary link ── */
.board-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  transition: color .3s, gap .3s;
}
.board-link svg { width: 16px; height: 16px; }
.board-link:hover { color: var(--gold-deep); gap: 12px; }

/* ── Footer ── */
.foot {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  font-size: 11.5px;
  letter-spacing: .08em;
  color: rgba(138,125,99,.8);
  display: flex; gap: 10px; align-items: center;
}
.foot .sep { opacity: .5; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .glow, .logo-ring, .badge-soon .dot { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
