/* ─── Reset ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: #590202;
}

/* ─── Landing Screen ─── */
.landing {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100dvh;
  background-color: #590202;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ─── Corner Decorations ─── */
.deco {
  position: absolute;
  pointer-events: none;
}

.deco--tl {
  top: clamp(18px, 5vw, 36px);
  left: clamp(18px, 5vw, 36px);
  width: clamp(100px, 26vw, 150px);
}

.deco--tr {
  top: clamp(18px, 5vw, 36px);
  right: clamp(18px, 5vw, 36px);
  width: clamp(50px, 14vw, 85px);
}

/* ─── Content Column ─── */
.landing__content {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100dvh;
}

/* ─── Center Group — truly centered on screen ─── */
.center-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 5vw, 36px);
  width: 100%;
  padding: 0 clamp(24px, 6vw, 40px);
}

/* ─── Prometemos ─── */
.prometemos {
  font-family: 'Cormorant SC', 'Georgia', serif;
  color: #f0e4d0;
  font-size: clamp(20px, 5.5vw, 30px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Separator ─── */
.separator {
  width: 88%;
}

/* ─── Main Title ─── */
.main-title {
  width: 100%;
}

/* ─── CTA Section — anchored to bottom ─── */
.cta-section {
  position: absolute;
  bottom: clamp(48px, 11vw, 72px);
  left: clamp(24px, 6vw, 40px);
  right: clamp(24px, 6vw, 40px);
  padding-bottom: 70px;
}

.cta-btn {
  display: block;
  width: 65%;
  background: #EFE5D4;
  color: #590202;
  border: none;
  border-radius: 100px;
  padding: clamp(17px, 4.5vw, 24px) clamp(36px, 9vw, 52px);
  font-family: 'Chivo', sans-serif;
  font-size: clamp(13px, 3.8vw, 18px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  cursor: pointer;
}

.ringpop {
  position: absolute;
  width: clamp(140px, 40vw, 160px);
  right: -8px;
  top: -28px;
  z-index: 2;
  pointer-events: none;
}

/* ─── Countdown ─── */
.countdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 18px;
}

.countdown-label-top {
  font-family: 'Chivo', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(240, 228, 208, 0.55);
  text-transform: uppercase;
}

.countdown-units {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown-num {
  font-family: 'Chivo', sans-serif;
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 700;
  color: #f0e4d0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-unit-label {
  font-family: 'Chivo', sans-serif;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(240, 228, 208, 0.5);
}

.countdown-dot {
  font-family: 'Chivo', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(240, 228, 208, 0.35);
  padding-bottom: 10px;
  line-height: 1;
}
