:root {
  --ink: #10131f;
  --paper: #f6f7fb;
  --accent: #208aef;
  --glow: #ffc864;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #1a2238 0%, #2c3a5e 55%, #46598a 100%);
  color: #fff;
}

/* Drifting cloud layers — pure CSS, mirrors the in-app fog. */
.clouds {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(38% 28% at 22% 32%, rgba(255,255,255,0.16), transparent 70%),
    radial-gradient(45% 30% at 75% 22%, rgba(255,255,255,0.12), transparent 70%),
    radial-gradient(50% 34% at 48% 78%, rgba(255,255,255,0.10), transparent 70%),
    radial-gradient(30% 22% at 88% 64%, rgba(255,255,255,0.14), transparent 70%);
  animation: drift 60s linear infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(-3%, -1%, 0) scale(1); }
  to   { transform: translate3d(3%, 1.5%, 0) scale(1.06); }
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 48px 24px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
}

.badge-soon { opacity: 0.75; cursor: default; }
.badge-small { font-size: 0.68rem; opacity: 0.8; }
.badge-big { font-size: 1.15rem; font-weight: 700; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px;
}

.feature h2 { font-size: 1.15rem; margin-bottom: 10px; }
.feature p { line-height: 1.6; color: #3c4254; }

footer {
  text-align: center;
  padding: 40px 24px 56px;
  color: #5a6072;
}

footer a { color: var(--accent); text-decoration: none; }
.fine { margin-top: 10px; font-size: 0.8rem; }

/* privacy page */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
  line-height: 1.7;
}
.doc h1 { font-size: 2rem; margin-bottom: 8px; }
.doc h2 { font-size: 1.2rem; margin: 28px 0 10px; }
.doc p, .doc li { color: #2d3242; margin-bottom: 10px; }
.doc ul { padding-left: 22px; }
.doc .updated { color: #7a8095; font-size: 0.9rem; margin-bottom: 24px; }
.doc a { color: var(--accent); }
