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

html, body {
  width: 100%;
  height: 100%;
  background: #0b0b0d;
  color: rgba(255, 255, 255, 0.92);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
               "Helvetica Neue", Arial, sans-serif;
}

body {
  overflow: hidden;
}

/* Aura background */
.aura {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0.05) 60%,
    rgba(255, 255, 255, 0.0) 70%
  );
  filter: blur(30px);
  animation: breathe 6.5s ease-in-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Main content */
.content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 32px 0;
}

.description {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.75;
}

.meta {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}

footer {
  position: absolute;
  bottom: 24px;
  font-size: 13px;
  opacity: 0.5;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  opacity: 0.8;
}

/* Breathing animation */
@keyframes breathe {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.55;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.85;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.55;
  }
}

/* Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  .aura {
    width: 300px;
    height: 300px;
  }
}
/* ---- Page layout additions (Privacy Policy) ---- */

.aura--small {
  width: 320px;
  height: 320px;
  filter: blur(34px);
  opacity: 0.9;
}

.content--page {
  justify-content: flex-start;
  padding-top: 28px;
  overflow-y: auto;
  overflow-x: hidden;
}

.topbar {
  width: min(860px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.topbar__spacer {
  flex: 1;
}

.page-title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.page-subtitle {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 18px;
}

.card {
  width: min(860px, 100%);
  text-align: left;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.card h2 {
  font-size: 15px;
  margin-top: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.86;
}

.muted {
  opacity: 0.55 !important;
  font-size: 13px !important;
}

.link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
}

.link:hover {
  opacity: 0.85;
}

.footer--page {
  position: static;
  margin-top: 18px;
  padding-bottom: 18px;
}

.dot {
  margin: 0 10px;
  opacity: 0.35;
}