:root {
  --color-cream: #eee2d0;
  --color-cream-dark: #e4d6c2;
  --color-dark: #121212;
  --color-dark-soft: #1c1c1c;
  --color-gold: #c5a059;
  --color-gold-soft: #d4b87a;
  --color-text: #2a241c;
  --color-text-muted: #6a6258;
  --color-white: #ffffff;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;

  --radius-button: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-white);
  background:
    radial-gradient(
      ellipse 65% 50% at 50% 0%,
      rgba(197, 160, 89, 0.12),
      transparent 55%
    ),
    var(--color-dark);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
}

.bloom {
  position: absolute;
  top: 0;
  z-index: 0;
  width: clamp(5.5rem, 14vw, 10.5rem);
  height: auto;
  max-height: min(42vh, 280px);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  opacity: 0.75;
}

.bloom-left {
  left: 0;
  object-position: left top;
}

.bloom-right {
  right: 0;
  object-position: right top;
  transform: scaleX(-1);
}

.stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 34rem;
  padding: clamp(2rem, 6vh, 4rem) clamp(1.5rem, 5vw, 3.5rem)
    clamp(2.5rem, 6vh, 4rem);
  text-align: center;
}

.brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.logo {
  width: min(220px, 70vw);
  height: auto;
}

.soon {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--color-gold);
}

.title {
  margin: 0 auto;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
}

.title em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold);
}

.divider {
  width: min(180px, 55%);
  height: auto;
  margin: 1rem auto 1.15rem;
}

.lead {
  margin: 0 auto 1.6rem;
  max-width: 36ch;
  color: rgba(238, 226, 208, 0.72);
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  line-height: 1.7;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  background: transparent;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-button);
  color: var(--color-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

.hooks {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 34ch;
}

.hooks li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(238, 226, 208, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
}

.hooks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-gold);
}

/* Entrada suave — assinatura quieta da LP */
.brand,
.soon,
.title,
.divider,
.lead,
.cta,
.hooks {
  animation: rise 0.85s ease both;
}

.soon {
  animation-delay: 0.08s;
}

.title {
  animation-delay: 0.16s;
}

.divider {
  animation-delay: 0.24s;
}

.lead {
  animation-delay: 0.32s;
}

.cta {
  animation-delay: 0.4s;
}

.hooks {
  animation-delay: 0.5s;
}

.bloom-left {
  animation: soft-in 1.2s ease both;
}

.bloom-right {
  animation: soft-in-mirrored 1.2s ease 0.12s both;
}

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

@keyframes soft-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.75;
  }
}

@keyframes soft-in-mirrored {
  from {
    opacity: 0;
    transform: scaleX(-1);
  }
  to {
    opacity: 0.75;
    transform: scaleX(-1);
  }
}

@media (max-width: 900px) {
  .stage {
    max-width: 36rem;
    padding-top: clamp(3.5rem, 10vh, 5rem);
  }
}

@media (max-width: 480px) {
  .hooks {
    margin-top: 1.65rem;
  }

  .cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .soon,
  .title,
  .divider,
  .lead,
  .cta,
  .hooks,
  .bloom-left,
  .bloom-right {
    animation: none;
  }

  .bloom-left,
  .bloom-right {
    opacity: 0.75;
  }

  .cta {
    transition: none;
  }
}
