@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600&display=swap');

:root {
  --bg: #0b1020;
  --bg-secondary: #0f172a;
  --fg: #e7ecf7;
  --muted: #9fb0d6;
  --accent: #7dd3fc;
  --panel: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 32px;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: var(--fg);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(125, 211, 252, 0.12), transparent 35%),
    linear-gradient(135deg, var(--bg), var(--bg-secondary) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateY(-52px);
}

.card {
  width: min(520px, 90vw);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.logo-card {
  padding: 38px 44px;
}

.title-card {
  padding: 18px 32px;
}

.logo {
  width: 180px;
  max-width: 60vw;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.4px;
  font-weight: 600;
}

.title-card h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 52px);
}

.bottom-actions {
  position: fixed;
  bottom: 10px;
  right: 24px;
  display: flex;
  gap: 10px;
}

.bottom-actions a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(11, 16, 32, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.bottom-actions a:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.copy-toast {
  position: fixed;
  bottom: 58px;
  right: 24px;
  padding: 10px 14px;
  background: rgba(11, 16, 32, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  font-size: 0.9rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.copy-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

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

a:hover {
  color: var(--fg);
}

body.privacy {
  align-items: flex-start;
}

main.privacy {
  width: min(780px, 100%);
  margin-top: 42px;
}

.privacy-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
}

.privacy-card h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
}

.privacy-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 600;
}
