:root {
  --bg: #0b0b12;
  --bg-2: #14141f;
  --text: #f2f2f5;
  --muted: #9a9aab;
  --accent: #7c5cff;
  --accent-2: #ff5c9a;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px circle at 20% 20%, rgba(124, 92, 255, 0.25), transparent 60%),
    radial-gradient(600px circle at 80% 80%, rgba(255, 92, 154, 0.18), transparent 60%),
    var(--bg-2);
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.logo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(124, 92, 255, 0.35);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.35);
  font-size: 0.85rem;
  color: #cabfff;
  margin-bottom: 1.75rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(124, 92, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 92, 255, 0); }
}

.desc {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.75rem;
}

.contact {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.25);
}

.contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124, 92, 255, 0.35);
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
  text-decoration: underline;
}

.sep {
  margin: 0 0.5rem;
}

/* --- privacy page --- */
.policy {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  line-height: 1.7;
}

.policy a {
  color: #cabfff;
}

.policy h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  -webkit-background-clip: unset;
  background: none;
  color: var(--text);
}

.policy .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: #cabfff;
}

.policy ul {
  padding-left: 1.2rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--text);
}
