:root {
  --marigold: #f5a623;
  --marigold-deep: #ef8f12;
  --ink: #12210f;
  --leaf: #1d3a17;
}

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

html, body { height: 100%; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  background: var(--leaf);
  -webkit-font-smoothing: antialiased;
}

.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

/* Flower background */
.bg {
  position: absolute;
  inset: 0;
  background: url("flower.jpg") center / cover no-repeat;
  transform: scale(1.08);
  animation: drift 24s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: scale(1.08) translateY(0); }
  to   { transform: scale(1.14) translateY(-14px); }
}

/* Readability veil + vignette */
.veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(0,0,0,0) 0%, rgba(6,20,4,.35) 55%, rgba(6,20,4,.78) 100%),
    linear-gradient(180deg, rgba(6,20,4,.25) 0%, rgba(6,20,4,.55) 100%);
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  animation: rise 1s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border: 1px solid rgba(245,166,35,.55);
  border-radius: 999px;
  color: var(--marigold);
  background: rgba(0,0,0,.2);
  backdrop-filter: blur(4px);
  margin-bottom: 1.6rem;
}

.brand {
  font-size: clamp(3.2rem, 13vw, 7rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: .95;
  text-shadow: 0 6px 40px rgba(0,0,0,.45);
}

.brand span {
  color: var(--marigold);
  text-shadow: 0 0 30px rgba(245,166,35,.6);
}

.tagline {
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 3.4vw, 1.6rem);
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(255,255,255,.92);
}

.dots i {
  display: inline-block;
  animation: blink 1.4s infinite both;
  font-style: normal;
}
.dots i:nth-child(2) { animation-delay: .2s; }
.dots i:nth-child(3) { animation-delay: .4s; }

@keyframes blink {
  0%, 100% { opacity: .2; }
  50%      { opacity: 1; }
}

/* Notify form */
.notify {
  margin-top: 2.4rem;
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.notify input {
  flex: 1 1 240px;
  max-width: 320px;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(6px);
  outline: none;
  transition: border-color .2s, background .2s;
}
.notify input::placeholder { color: rgba(255,255,255,.6); }
.notify input:focus {
  border-color: var(--marigold);
  background: rgba(255,255,255,.16);
}

.notify button {
  padding: .85rem 1.6rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--marigold), var(--marigold-deep));
  color: #2a1c02;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(245,166,35,.35);
}
.notify button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245,166,35,.5);
}
.notify button:active { transform: translateY(0); }

.foot {
  position: absolute;
  bottom: 1.4rem;
  z-index: 2;
  font-size: .78rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
}

.foot a {
  color: var(--marigold);
  text-decoration: none;
  transition: color .2s;
}
.foot a:hover { color: #fff; }

@media (max-width: 480px) {
  .eyebrow { letter-spacing: .3em; }
}
