/* Same base styles as before, plus logo and background icon integration */
:root {
  --beige: #F6F1E9;
  --blush: #FFC3FF;
  --sage: #CFE8CF;
  --sky: #76ABFF;
  --lavender: #AA83FA;
  --ink: #333;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: var(--beige);
  color: var(--ink);
}

.wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  max-width: 700px;
  z-index: 2;
}

.brand-logo {
  width: 180px;
  max-width: 90%;
  margin-bottom: 1rem;
}

.title {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  margin: .5rem 0;
}

.subtitle {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.pill.coming {
  display: inline-block;
  background: linear-gradient(90deg, var(--blush), var(--sage));
  padding: .5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta {
  display: grid;
  gap: .75rem;
  margin-bottom: 1rem;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: .8rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.btn.primary {
  background: linear-gradient(90deg, var(--sky), var(--lavender));
  color: white;
}

.btn.ghost {
  border: 2px solid var(--sky);
  color: var(--sky);
  background: white;
}

.notify input {
  width: 70%;
  padding: .8rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-bottom: .5rem;
}

.notify button {
  padding: .8rem 1.2rem;
  border-radius: 12px;
  background: var(--lavender);
  color: white;
  font-weight: 700;
  border: none;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin: 1.5rem 0;
  color: #444;
}

.footer {
  color: #666;
  font-size: .9rem;
}

.bg-icon {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  opacity: 0.1;
  transform: rotate(15deg);
}
