/* Pastel Coming Soon Page */

:root{
  /* Pastel palette */
  --bg1: #fde2e4;   /* blush */
  --bg2: #e2f0ff;   /* baby blue */
  --bg3: #e8f7e9;   /* mint */
  --bg4: #fff6d8;   /* warm cream */

  --card: rgba(255,255,255,.72);
  --border: rgba(255,255,255,.55);
  --shadow: rgba(20, 20, 45, .18);

  --text: #2a2b3a;
  --muted: rgba(42, 43, 58, .72);

  --accent1: #b8c0ff; /* periwinkle */
  --accent2: #ffd6a5; /* peach */
  --accent3: #caffbf; /* light green */
  --accent4: #a0c4ff; /* soft blue */
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 600px at 15% 20%, var(--bg1), transparent 55%),
    radial-gradient(900px 600px at 85% 80%, var(--bg2), transparent 55%),
    radial-gradient(700px 500px at 25% 85%, var(--bg3), transparent 55%),
    radial-gradient(700px 500px at 75% 15%, var(--bg4), transparent 55%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  display:grid;
  place-items:center;
  padding: 24px;
}

.wrap{
  width: min(900px, 100%);
  display:grid;
  place-items:center;
}

.card{
  width: min(840px, 100%);
  position: relative;
  border-radius: 22px;
  padding: 34px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px var(--shadow);
  backdrop-filter: blur(10px);
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2), var(--accent3), var(--accent4), var(--accent1));
  background-size: 200% 100%;
  filter: blur(18px);
  opacity: .55;
  animation: glowMove 8s linear infinite;
  z-index: -1;
}

@keyframes glowMove{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 200% 50%; }
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(42, 43, 58, .10);
  background: rgba(255,255,255,.55);
  color: rgba(42, 43, 58, .78);
  font-size: 14px;
  letter-spacing: .2px;
  user-select:none;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent1), var(--accent3));
  box-shadow: 0 0 0 7px rgba(184,192,255,.35);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{ transform: scale(1); box-shadow: 0 0 0 7px rgba(184,192,255,.35); }
  50%{ transform: scale(1.08); box-shadow: 0 0 0 12px rgba(202,255,191,.28); }
}

h1{
  margin: 18px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.7px;
}

p{
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(16px, 2.1vw, 18px);
  line-height: 1.65;
}

.row{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
}

.input{
  flex: 1 1 290px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(42, 43, 58, .10);
  background: rgba(255,255,255,.62);
}

.input input{
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
}

.icon{
  opacity: .7;
}

.btn{
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(42, 43, 58, .92);
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  box-shadow: 0 14px 30px rgba(42, 43, 58, .14);
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(42, 43, 58, .18);
  filter: saturate(1.05);
}

.btn:active{
  transform: translateY(0px);
  box-shadow: 0 12px 24px rgba(42, 43, 58, .14);
}

.meta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill{
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(42, 43, 58, .10);
  background: rgba(255,255,255,.55);
  color: rgba(42, 43, 58, .72);
}

.footer{
  margin-top: 24px;
  font-size: 14px;
  color: rgba(42, 43, 58, .65);
  text-align: center;
}

.footer a{
  color: rgba(42, 43, 58, .85);
  text-decoration: none;
  border-bottom: 1px dashed rgba(42, 43, 58, .35);
}

.footer a:hover{
  border-bottom-style: solid;
}

@media (max-width: 520px){
  .card{ padding: 26px 18px; }
}
