:root {
  --bg-1: #fff7ed;
  --bg-2: #ffffff;
  --text-primary: #0f172a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 15% 15%, #ffedd5 0%, transparent 35%),
    linear-gradient(135deg, var(--bg-2), var(--bg-1));
}

body {
  position: relative;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1rem 4rem;
}

.logo {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0;
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  text-align: center;
  color: #64748b;
}
