:root {
  --bg: #f9f3ea;
  --card: #fffdf7;
  --accent: #f57f20;
  --text: #2f2418;
  --muted: #8c7a67;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 232, 205, 0.5), transparent 55%), var(--bg);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing {
  width: 100%;
  max-width: 960px;
  padding: 40px;
}

.card {
  background: var(--card);
  border-radius: 36px;
  padding: clamp(32px, 8vw, 80px);
  box-shadow: 0 30px 80px rgba(63, 42, 22, 0.15);
  text-align: center;
}

.logo-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 32px;
  background: linear-gradient(145deg, #fff1df, #f0c9a4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 25px 50px rgba(65, 38, 17, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap img {
  width: 100px;
  border-radius: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0;
}

.description,
.note {
  max-width: 520px;
  margin: 0 auto 10px;
  color: var(--muted);
  font-size: 16px;
}
