:root {
  --bg-1: #0b0506;
  --bg-2: #2a0b10;
  --red-1: #ff1f4b;
  --red-2: #ff5e7a;
  --red-3: #c80e33;
  --cream: #fff2f4;
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--cream);
  background: radial-gradient(1200px 800px at 10% 10%, #2b0d12 0%, #140609 45%, #070304 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background: radial-gradient(800px 500px at 85% 15%, rgba(255, 46, 91, 0.22), transparent 60%),
    radial-gradient(900px 700px at 20% 80%, rgba(255, 125, 150, 0.18), transparent 60%);
}

body::after {
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M60 10C47 1 28 5 21 19c-7 14 1 31 15 43l24 21 24-21c14-12 22-29 15-43C92 5 73 1 60 10z' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: screen;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  padding: 24px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", "Helvetica", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.nav a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav a:hover {
  opacity: 1;
}

a{
  text-decoration: none;
}


.hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 0 clamp(20px, 6vw, 80px) 80px;
}

.card {
  width: min(920px, 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 70px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 55, 93, 0.7), transparent 70%);
  top: -120px;
  right: -80px;
  opacity: 0.7;
}

.card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 145, 170, 0.45), transparent 70%);
  bottom: -120px;
  left: -40px;
}

.kicker {
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}

.title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 18px 0 10px;
  color: #fff6f8;
}

.subtitle {
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 242, 244, 0.9);
  max-width: 60ch;
}

.quote {
  margin-top: 26px;
  font-style: italic;
  color: rgba(255, 242, 244, 0.85);
}

.actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: none;
  cursor: pointer;
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-1), var(--red-2));
  color: white;
  box-shadow: 0 12px 30px rgba(255, 55, 100, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 55, 100, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 0.85rem;
  margin-top: 26px;
}

.nav-links a {
  color: rgba(255, 242, 244, 0.8);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
  border-color: rgba(255, 242, 244, 0.7);
}

.answer {
  margin-top: 18px;
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 242, 244, 0.85);
}

.footer {
  padding: 22px clamp(20px, 5vw, 60px) 40px;
  text-align: center;
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

.glow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.heart {
  width: 10px;
  height: 10px;
  background: var(--red-2);
  transform: rotate(45deg);
  position: relative;
  display: inline-block;
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--red-2);
  border-radius: 50%;
}

.heart::before {
  top: -5px;
  left: 0;
}

.heart::after {
  left: -5px;
  top: 0;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(20px) scale(0.9);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120px) scale(1.2);
    opacity: 0;
  }
}

.floating-heart {
  position: fixed;
  bottom: -40px;
  right: 20px;
  width: 14px;
  height: 14px;
  background: var(--red-1);
  transform: rotate(45deg);
  animation: floatUp 4s ease-in forwards;
  z-index: 1;
}

.floating-heart::before,
.floating-heart::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--red-1);
  border-radius: 50%;
}

.floating-heart::before {
  top: -7px;
  left: 0;
}

.floating-heart::after {
  left: -7px;
  top: 0;
}
