:root {
  --primary-dark-pink: #b7004d;
  --hot-pink: #ff5484;
  --accent-purple: #7a0197;
  --text-dark: #392b31;
  --text-light: #68575e;
  --surface-white: rgba(255, 255, 255, 0.76);
  --surface-light-pink: #fce1eb;
  --gradient-start: #fff0f5;
  --gradient-end: #f7beff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(255, 84, 132, 0.12), transparent 28rem),
    radial-gradient(circle at top right, rgba(122, 1, 151, 0.1), transparent 24rem),
    linear-gradient(180deg, #fff8fb 0%, var(--gradient-start) 52%, #fff7fb 100%);
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(255, 84, 132, 0.25);
}

.page-glow-right {
  top: 12rem;
  right: -10rem;
  background: rgba(122, 1, 151, 0.18);
}

.privacy-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  margin: 0 auto;
  padding: 3.2rem 1.4rem 4rem;
}

.hero {
  text-align: center;
  padding-top: 0.6rem;
}

.sparkle-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary-dark-pink);
}

.sparkle-row-bottom {
  margin-top: 0.2rem;
}

.sparkle {
  line-height: 1;
}

.sparkle-large {
  font-size: 0.9rem;
  opacity: 0.35;
}

.sparkle-small {
  font-size: 0.65rem;
  opacity: 0.25;
  color: var(--hot-pink);
}

h1 {
  margin: 1rem 0 0;
  font-family: "Merriweather", serif;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 1.18;
  font-weight: 900;
  font-style: italic;
  color: var(--primary-dark-pink);
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 38rem;
  margin: 0.5rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy.muted {
  margin-top: 2rem;
  color: var(--text-light);
  font-weight: 400;
}

.hero-copy.bold {
  color: var(--text-dark);
  font-weight: 700;
}

.divider {
  width: 3.8rem;
  height: 1px;
  margin: 2.4rem auto 2.2rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(183, 0, 77, 0.3) 50%,
    transparent 100%
  );
}

.sections {
  display: grid;
  gap: 1rem;
}

.policy-card {
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: var(--surface-white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 0.4rem 1rem rgba(183, 0, 77, 0.06);
  backdrop-filter: blur(10px);
}

.policy-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
}

h2 {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark-pink);
}

.policy-card p,
.policy-card li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light);
}

.policy-card p {
  margin: 0.8rem 0 0;
}

.policy-card ul {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
}

.policy-card li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
}

.policy-card li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: rgba(255, 84, 132, 0.55);
}

.card-footer {
  font-family: "Merriweather", serif;
  font-style: italic;
  color: rgba(255, 84, 132, 0.78);
}

.footer-mark {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 1.35rem;
  color: rgba(255, 84, 132, 0.42);
  animation: pulseHeart 1.8s ease-in-out infinite alternate;
}

@keyframes pulseHeart {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.14);
  }
}

/* Button & Form Styles added for Double Square main page */

.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}

.btn-primary {
  background: var(--hot-pink);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 84, 132, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark-pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(183, 0, 77, 0.4);
}

.btn-secondary {
  background: var(--surface-white);
  color: var(--primary-dark-pink);
  border: 1px solid rgba(183, 0, 77, 0.2);
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-2px);
  border-color: rgba(183, 0, 77, 0.4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-control {
  padding: 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(183, 0, 77, 0.15);
  background: rgba(255, 255, 255, 0.8);
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--hot-pink);
  box-shadow: 0 0 0 3px rgba(255, 84, 132, 0.15);
  background: white;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

#form-status {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  display: none;
}

#form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

#form-status.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

@media (min-width: 768px) {
  .privacy-shell {
    padding-top: 4.2rem;
    padding-bottom: 5rem;
  }

  .policy-card {
    padding: 1.35rem 1.4rem;
  }
}
