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

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

:root {
  --bg:       #080808;
  --surface:  #111111;
  --surface2: #1a1a1a;
  --border:   rgba(255,255,255,0.1);
  --text:     #ffffff;
  --text-dim: rgba(255,255,255,0.45);
  --radius:   20px;
  --accent:   #ffffff;
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.app {
  width: 100%;
  max-width: 560px;
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 0 env(safe-area-inset-bottom);
}

/* ── Logo bar ── */
.logo-bar {
  padding: 32px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wordmark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
}

/* ── Step dots ── */
.steps {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 24px 28px 0;
}
.step-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, width 0.2s;
}
.step-dot.active {
  background: #fff;
  width: 20px;
  border-radius: 3px;
}
.step-dot.done { background: rgba(255,255,255,0.35); }

/* ── Page hero ── */
.page-hero {
  padding: 40px 28px 0;
  flex-shrink: 0;
}
.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 0.9;
  color: #fff;
}
.page-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.55;
}

/* ── Primary button ── */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 68px;
  border-radius: 18px;
  border: none;
  background: #ffffff;
  color: #000000;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.12s;
  -webkit-appearance: none;
}
.btn-primary:active { opacity: 0.82; transform: scale(0.98); }

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  -webkit-appearance: none;
}
.btn-secondary:active { border-color: rgba(255,255,255,0.35); color: #fff; }

/* ── Footer area ── */
.page-footer {
  padding: 20px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
