:root {
  --bg: #010101;
  --yellow: #fac702;
  --pink: #f965b8;
  --purple: #c17afe;
  --blue: #3392ff;
  --border-dark: #101010;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
}

body {
  background: var(--bg);
  color: #ffffff;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--blue) #0a0a0a;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: #0a0a0a;
}

html::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 999px;
}

/* Brand wordmark: "tippytap" in Chewy with a colored dot and a soft
   glow blob behind it. --glow picks the color per instance. */

.brand {
  position: relative;
  display: inline-block;
  font-family: "Chewy", cursive;
}

.brand::before {
  content: "";
  position: absolute;
  inset: -0.35em -0.25em;
  background: radial-gradient(closest-side, var(--glow, var(--pink)) 0%, transparent 72%);
  filter: blur(1.1em);
  opacity: 0.6;
  z-index: -1;
  border-radius: 50%;
}

.brand .dot {
  color: var(--pink);
}

/* Pill button, shared by the hero page's policy buttons */

.pill-button {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--border-dark);
  background: var(--pink);
  border: 4px solid var(--border-dark);
  border-radius: 999px;
  padding: 0.9rem 2.25rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.pill-button:hover,
.pill-button:focus-visible {
  filter: brightness(1.05);
}

/* Policy document typography, shared by /privacy, /terms, /user-data
   (and rendered identically whether viewed standalone or inside the
   hero page's modal iframe) */

.policy h1 {
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 0.25rem;
}

.policy .updated {
  color: #9a9a9a;
  margin: 0 0 1.75rem;
}

.policy h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}

.policy p,
.policy li {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #e6e6e6;
}

.policy ul,
.policy ol {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}

.policy a {
  color: var(--pink);
}
