/* Soft, welcoming landing page */
:root{
  --bg: #FFF6C8;           /* pale yellow */
  --card: rgba(255,255,255,0.78);
  --stroke: rgba(18,18,18,0.10);
  --text: #2A2A2A;
  --muted: rgba(42,42,42,0.70);
  --accent: #FF4D6D;       /* ribbon-ish accent */
  --accent2: #FFB703;      /* warm highlight */
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 50% 0%, rgba(255,255,255,0.85), rgba(255,255,255,0) 55%),
              radial-gradient(900px 600px at 20% 80%, rgba(255,183,3,0.18), rgba(255,183,3,0) 60%),
              radial-gradient(900px 600px at 80% 80%, rgba(255,77,109,0.10), rgba(255,77,109,0) 60%),
              var(--bg);
}

.wrap{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.card{
  width: min(520px, 100%);
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 28px 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  text-align: center;
  backdrop-filter: blur(8px);
}

.logo-row{
  display: grid;
  place-items: center;
  margin-top: 4px;
  margin-bottom: 14px;
}

.logo{
  width: 140px;
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.12));
}

h1{
  margin: 8px 0 6px 0;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.subtitle{
  margin: 0 auto 18px auto;
  max-width: 36ch;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.pill-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 22px 0;
}

.pill{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(18,18,18,0.08);
  font-weight: 700;
  font-size: 14px;
}

.cta{
  margin-top: 6px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.small{
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #FF7A59);
  border: 0;
  box-shadow: 0 14px 24px rgba(255,77,109,0.25);
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.button:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(255,77,109,0.30);
  filter: brightness(1.02);
}

.button:active{
  transform: translateY(0px);
  box-shadow: 0 12px 18px rgba(255,77,109,0.22);
}

.footer{
  margin-top: 20px;
  font-size: 13px;
  color: rgba(42,42,42,0.62);
}
