:root {
  --bg-top: #fff9f2;
  --bg-bottom: #f5efe8;
  --ink: #2f241f;
  --muted: #766159;
  --rose: #cb7b7f;
  --rose-deep: #a95a63;
  --mint: #d9ebe1;
  --card: rgba(255, 252, 247, 0.72);
  --line: rgba(113, 83, 72, 0.12);
  --shadow: 0 32px 80px rgba(137, 94, 81, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 212, 214, 0.9), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(219, 238, 226, 0.95), transparent 28%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  overflow-x: hidden;
}

.backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 70%, rgba(255, 255, 255, 0.65), transparent 24%),
    radial-gradient(circle at 80% 65%, rgba(255, 255, 255, 0.45), transparent 26%);
  pointer-events: none;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.card {
  width: min(760px, 100%);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lead {
  margin: 24px 0 0;
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.glass-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.glass-tile {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 240, 234, 0.86));
  border: 1px solid rgba(113, 83, 72, 0.1);
}

.label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.glass-tile strong {
  font-size: 1rem;
  line-height: 1.5;
}

.actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fffaf8;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 30px rgba(169, 90, 99, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(169, 90, 99, 0.28);
  filter: saturate(1.05);
}

.footnote {
  margin: 22px 0 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 720px) {
  .shell {
    padding: 18px;
  }

  .card {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .glass-row {
    grid-template-columns: 1fr;
  }

  .lead,
  .footnote {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
