:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --ink-dim: #4a4a4a;
  --light: 120, 190, 255; /* eternal light, soft sky blue */
}

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

html, body {
  min-height: 100%;
  background: var(--bg);
}

/* ---------- Home / landing page ---------- */

body.home {
  min-height: 100vh;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.home-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 24px 3rem;
}

.hero {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 2rem 1rem;
}

/* Ambient light-blue orb, radiating outward from the centre of the wordmark */
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vmax;
  height: 60vmax;
  max-width: 900px;
  max-height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(var(--light), 0.18) 0%, rgba(var(--light), 0.08) 20%, rgba(var(--light), 0.03) 38%, rgba(255, 255, 255, 0) 60%);
  z-index: -2;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20vmax;
  height: 20vmax;
  max-width: 320px;
  max-height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(var(--light), 0.38) 0%, rgba(var(--light), 0.12) 40%, rgba(255, 255, 255, 0) 72%);
  filter: blur(1px);
  z-index: -1;
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.3em;
  color: var(--ink);
  text-shadow: 0 0 40px rgba(var(--light), 0.35), 0 0 90px rgba(var(--light), 0.18);
  /* Compensate optical drift from wide letter-spacing so the wordmark stays visually centered */
  margin-right: -0.3em;
}

.hero .tagline {
  margin-top: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-right: -0.2em;
}

.hero .coming-soon {
  margin-top: 1.25rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
}

body.home footer {
  text-align: center;
  padding: 0 24px 2.5rem;
}

body.home footer a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(10, 10, 10, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

body.home footer a:hover {
  color: rgb(var(--light));
}

/* ---------- Privacy policy page ---------- */

body.policy {
  color: rgba(10, 10, 10, 0.8);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6rem 24px 4rem;
}

body.policy::before {
  content: "";
  position: fixed;
  top: -10%;
  left: 50%;
  width: 100vmax;
  height: 100vmax;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(var(--light), 0.1) 0%, rgba(var(--light), 0.04) 18%, rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
  z-index: 0;
}

body.policy main {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
}

body.policy a.back {
  display: inline-block;
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(10, 10, 10, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

body.policy a.back:hover {
  color: rgb(var(--light));
}

body.policy h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

body.policy p.updated {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(10, 10, 10, 0.4);
  margin-bottom: 2.5rem;
}

body.policy h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

body.policy p {
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.65);
  margin-bottom: 1rem;
}

body.policy a.contact {
  color: rgb(var(--light));
}
