:root {
  --bg-deep: #10161a;
  --bg-mid: #1a2420;
  --petal-plum: #6b4a6e;
  --petal-rose: #a3597a;
  --leaf-green: #3f6455;
  --leaf-soft: #6b9080;
  --mist: #cbb9c9;
  --text-main: #e8e3e6;
  --text-dim: #9aa39c;
}

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

html, body {
  height: 100%;
  background: radial-gradient(ellipse at 50% 20%, var(--bg-mid), var(--bg-deep) 70%);
  color: var(--text-main);
  font-family: 'Georgia', 'Times New Roman', serif;
  overflow: hidden;
}

.scene {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valley {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to top, var(--leaf-green) 0%, transparent 100%);
  opacity: 0.5;
  filter: blur(1px);
}

.content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mist);
  text-shadow: 0 0 30px rgba(163, 89, 122, 0.35);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.status {
  font-size: 0.95rem;
  color: var(--leaf-soft);
  font-style: italic;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

.signature {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.signature span {
  color: var(--petal-rose);
}

canvas#petals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  z-index: 0;
}

.glow.one {
  width: 300px;
  height: 300px;
  background: var(--petal-plum);
  top: 20%;
  left: 15%;
}

.glow.two {
  width: 260px;
  height: 260px;
  background: var(--petal-rose);
  bottom: 15%;
  right: 12%;
}
