:root {
  --paper: #FFF8EC;
  --ink: #1B1B2F;
  --pink: #FF4FA3;
  --yellow: #FFC93C;
  --teal: #2FC9C1;
  --purple: #8657FF;
  --white: #FFFFFF;
  --font-display: "Baloo 2", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;
  --shadow-sticker: 5px 6px 0 rgba(27,27,47,0.95);
  --shadow-sticker-sm: 3px 4px 0 rgba(27,27,47,0.95);
}
@media (prefers-reduced-motion: no-preference) { :root { --t: 5s; } }
@media (prefers-reduced-motion: reduce) { :root { --t: 0s; } }

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(27,27,47,0.08) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}
.logo .dot { color: var(--pink); }
.logo-mark { width: 32px; height: 32px; transform: rotate(-8deg); }

header.top {
  padding: 26px 24px;
}

main.wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px 60px;
  position: relative;
  overflow: hidden;
}

.stage {
  position: relative;
  max-width: 640px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px 16px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-sticker-sm);
  margin-bottom: 22px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.05;
  margin: 0 0 18px;
}
h1 .highlight {
  background: var(--yellow);
  padding: 0 10px;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-1.5deg);
}

.sub {
  font-size: 1.15rem;
  max-width: 46ch;
  margin: 0 auto 34px;
  color: #3d3d54;
}

/* Notify card — peel-corner signature, reused from the main site */
.notify-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sticker);
  max-width: 460px;
  margin: 0 auto;
}
.notify-card::after {
  content: "";
  position: absolute;
  top: -3px; right: -3px;
  width: 34px; height: 34px;
  background: linear-gradient(135deg, transparent 50%, var(--paper) 50.5%);
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-bottom-left-radius: 10px;
  box-shadow: -2px 2px 3px rgba(27,27,47,0.25);
}
.notify-card h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 14px;
}
.notify-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.notify-form input[type="email"] {
  flex: 1 1 220px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  min-width: 0;
}
.notify-form input[type="email"]:focus {
  outline: 3px solid var(--purple);
  outline-offset: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 13px 26px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sticker);
  transition: transform 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 8px 0 rgba(27,27,47,0.95); }
.btn:active { transform: translate(3px, 4px); box-shadow: 1px 2px 0 rgba(27,27,47,0.95); }
.form-note { font-size: 0.82rem; color: #6a6a83; margin: 14px 0 0; }

/* Countdown */
.countdown {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 8px 0 32px;
  flex-wrap: wrap;
}
.countdown .cell {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 72px;
  box-shadow: var(--shadow-sticker-sm);
}
.countdown .cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pink);
  line-height: 1;
}
.countdown .cell span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #6a6a83;
}

.social-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.social-row a {
  width: 40px; height: 40px;
  border: 2.5px solid var(--ink); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); text-decoration: none;
  transition: transform 160ms ease;
}
.social-row a:hover { transform: translateY(-2px); }

/* Floating background stickers */
.float-art { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.float-art svg {
  position: absolute;
  filter: drop-shadow(var(--shadow-sticker));
  animation: bob var(--t, 5s) ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-14px) rotate(var(--r,0deg)); } }

footer.bottom {
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  color: #6a6a83;
}

.toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sticker);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 100;
  text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 520px) {
  .notify-form { flex-direction: column; }
  .btn { width: 100%; }
  .float-art svg { display: none; }
}
