/* PawCentral — Coming Soon landing page
   Palette + type mirror the app design system (docs/design-system.md). */

:root {
  --bg: #F5EFE6;
  --card: #FCFAF5;
  --card-alt: #F0E9DC;
  --border: #E8DFD0;
  --ink: #2D2620;
  --ink2: #5C5247;
  --ink3: #8C8073;
  --sage: #6B8E72;
  --sage-deep: #4F6B57;
  --sage-soft: #DCE8DD;
  --taupe: #B8A88B;
  --taupe-deep: #8A7A60;
  --amber: #E8A547;
  --coral: #C56B5A;
  --plum: #8A7AB8;

  --font: "Nunito", -apple-system, system-ui, sans-serif;
  --font-hand: "Caveat", "Nunito", system-ui, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  /* soft warm radial wash so the page never feels flat */
  background-image:
    radial-gradient(circle at 50% 14%, var(--sage-soft) 0%, rgba(220, 232, 221, 0) 42%);
  background-repeat: no-repeat;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  max-width: 560px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
}

/* ── Wordmark ─────────────────────────────── */
.wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.wordmark__mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero ─────────────────────────────────── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 0 40px;
}

.hero__art {
  position: relative;
  width: 220px;
  height: 210px;
  margin-bottom: 30px;
}

.hero__halo {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--sage-soft) 0%, rgba(245, 239, 230, 0) 70%);
}

.hero__avatar {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 162px;
  height: 162px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 18px 40px rgba(107, 142, 114, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

/* Floating pet monogram chips */
.chip {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card);
  font-weight: 800;
}

.chip--biscuit {
  top: 56px;
  left: 8px;
  width: 46px;
  height: 46px;
  font-size: 18px;
  background: var(--amber);
  box-shadow: 0 6px 16px rgba(232, 165, 71, 0.35);
  transform: rotate(-8deg);
  animation: float 5s ease-in-out infinite 0.4s;
}

.chip--pip {
  top: 46px;
  right: 6px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background: var(--plum);
  box-shadow: 0 6px 16px rgba(138, 122, 184, 0.35);
  transform: rotate(10deg);
  animation: float 5.5s ease-in-out infinite 0.8s;
}

.chip--luna {
  bottom: 18px;
  left: 64px;
  width: 38px;
  height: 38px;
  font-size: 15px;
  background: var(--coral);
  box-shadow: 0 6px 14px rgba(197, 107, 90, 0.35);
  transform: rotate(-4deg);
  animation: float 6.5s ease-in-out infinite 1.2s;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin-bottom: 12px;
}

.hero__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-bottom: 14px;
  text-wrap: pretty;
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink2);
  max-width: 30rem;
}

.hero__hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 22px;
  color: var(--sage-deep);
  white-space: nowrap;
}

/* ── Notify form ──────────────────────────── */
.notify {
  width: 100%;
  max-width: 26rem;
  margin-top: 30px;
}

.notify__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin-bottom: 10px;
}

.notify__row {
  display: flex;
  gap: 10px;
}

.notify__input {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.notify__input::placeholder {
  color: var(--ink3);
  font-weight: 500;
}

.notify__input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-soft);
}

.notify__button {
  border: none;
  background: var(--sage);
  color: var(--card);
  border-radius: 16px;
  padding: 15px 22px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(107, 142, 114, 0.33);
  transition: background 0.15s ease, transform 0.05s ease;
}

.notify__button:hover { background: var(--sage-deep); }
.notify__button:active { transform: translateY(1px); }

/* ── Info line ────────────────────────────── */
.info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink3);
}

/* ── Footer ───────────────────────────────── */
.foot {
  text-align: center;
  padding: 18px 0 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink3);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 460px) {
  .page { padding: 22px 20px 0; }
  .hero__title { font-size: 29px; }
  .hero__subtitle { font-size: 15px; }
  .notify__row { flex-direction: column; }
  .notify__button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__avatar, .chip { animation: none; }
}
