:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #fff7f1;
  color: #241b18;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, #fff7f1 0%, #ffe4ea 46%, #e7f2ff 100%);
}

.card {
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(71, 44, 45, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(92, 59, 66, 0.18);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #7b4f5b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 5.8rem);
  line-height: 0.95;
}

.prompt {
  margin: 18px 0 0;
  color: #5e4b47;
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 650;
}

.choices {
  position: relative;
  width: min(100%, 430px);
  height: 190px;
  margin: 34px auto 0;
}

.choice {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 116px;
  min-height: 52px;
  padding: 12px 18px;
  border: 2px solid #2d2725;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(74, 52, 55, 0.12);
  color: #241b18;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    left 210ms cubic-bezier(0.2, 0.8, 0.2, 1),
    top 210ms cubic-bezier(0.2, 0.8, 0.2, 1);
  user-select: none;
}

.choice:hover,
.choice:focus-within {
  border-color: #d73659;
  background: #fff1f5;
  box-shadow: 0 14px 30px rgba(215, 54, 89, 0.18);
}

.choice input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #d73659;
}

.choice-yes {
  left: 50%;
  top: 42%;
  z-index: 2;
}

.choice-no {
  left: 22%;
  top: 76%;
}

.choice-maybe {
  left: 78%;
  top: 76%;
}

.answer {
  min-height: 1.5em;
  margin: 22px 0 0;
  color: #336150;
  font-size: 1.05rem;
  font-weight: 800;
}

@media (max-width: 460px) {
  .choices {
    height: 230px;
  }

  .choice {
    min-width: 104px;
    padding-inline: 14px;
    font-size: 1rem;
  }

  .choice-no {
    left: 26%;
    top: 76%;
  }

  .choice-maybe {
    left: 74%;
    top: 76%;
  }
}
