:root {
  --plum: #2A1A2E;
  --plum2: #3D2438;
  --cream: #FFF4E6;
  --muted: #C9B79E;
  --orange: #FF6B35;
  --gold: #F4B740;
  --card: #3A2440;
  --line: rgba(255, 255, 255, 0.10);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--cream);
  background: radial-gradient(120% 90% at 50% 0%, var(--plum2) 0%, var(--plum) 70%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 920px; margin: 0 auto; padding: 0 20px; }
a { color: var(--gold); }

/* Hero */
.hero { text-align: center; padding: 72px 20px 40px; }
.balls { display: flex; gap: 10px; justify-content: center; margin-bottom: 18px; }
.ball {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 20px; color: #fff;
  border: 2px solid rgba(255,255,255,0.2); box-shadow: 0 6px 14px rgba(0,0,0,.35);
}
.ball.g { background: var(--gold); color: var(--plum); }
.ball.r { background: #CB4A50; transform: translateY(-8px); width: 64px; height: 64px; }
.ball.b { background: #2E83BC; }
.logo { font-size: 64px; font-weight: 800; letter-spacing: 1px; }
.logo .go { color: var(--orange); }
.tag { color: var(--gold); letter-spacing: 4px; font-weight: 700; margin-top: 4px; font-size: 15px; }
.sub { color: var(--muted); margin-top: 16px; font-size: 18px; max-width: 560px; margin-left: auto; margin-right: auto; }
.promise { display: inline-block; margin-top: 18px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--cream); font-weight: 600; font-size: 14px; }

/* Sections */
section { padding: 36px 0; }
h2 { font-size: 26px; margin-bottom: 18px; text-align: center; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.feat { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; }
.feat h3 { font-size: 17px; margin-bottom: 6px; color: var(--cream); }
.feat p { color: var(--muted); font-size: 15px; }
.shots { display: flex; gap: 16px; overflow-x: auto; padding: 8px 4px 16px; }
.shots img { height: 460px; border-radius: 22px; border: 1px solid var(--line); }
.cta { text-align: center; }
.badge { display: inline-block; margin: 6px; padding: 12px 22px; border-radius: 12px; background: var(--orange); color: #fff; font-weight: 700; text-decoration: none; }
.badge.alt { background: transparent; border: 1px solid var(--line); color: var(--cream); }
footer { border-top: 1px solid var(--line); margin-top: 30px; padding: 28px 0 60px; text-align: center; color: var(--muted); font-size: 14px; }
footer a { margin: 0 10px; }

/* Coming soon section */
.coming-soon { padding: 36px 0; }
.soon-lede { text-align: center; color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.feat.soon { opacity: 0.82; border-style: dashed; position: relative; }
.soon-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  color: var(--gold); background: rgba(244,183,64,.12);
  border: 1px solid rgba(244,183,64,.35); border-radius: 999px;
  padding: 2px 8px;
}

/* Legal pages */
.legal { padding: 56px 0; }
.legal h1 { font-size: 32px; margin-bottom: 6px; }
.legal .updated { color: var(--muted); margin-bottom: 24px; }
.legal h2 { text-align: left; font-size: 20px; margin: 26px 0 8px; }
.legal p, .legal li { color: #E9D9C5; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.back { display: inline-block; margin-bottom: 24px; }
