body {
  background-color: #131313;
  color: #e5e2e1;
  font-family: "Manrope", sans-serif;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.text-glow {
  text-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}


/* ── Desktop showcase: feature items ─────────────────────────────── */
.feature-item {
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.feature-item.is-active {
  opacity: 1;
}
.feature-item .feature-number {
  display: block;
  color: #2a2a2a;
  transition: color 0.4s ease;
}
.feature-item.is-active .feature-number {
  color: #e50914;
}
.feature-item .feature-title {
  color: rgba(229, 226, 225, 0.45);
  transition: color 0.4s ease;
}
.feature-item.is-active .feature-title {
  color: #e5e2e1;
}

/* ── Desktop showcase: cross-fade phone slides ────────────────────── */
.showcase-desktop-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.showcase-desktop-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.twitter-icon:hover {
  border-color: #1DA1F2;
  color: #1DA1F2;
}

.instagram-icon {
  position: relative;
}

/* Gradient ring using mask-composite — carves out the inner area so only the border ring shows */
.instagram-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  padding: 1.5px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.instagram-icon:hover {
  border-color: transparent;
  color: #e1306c;
}

.instagram-icon:hover::before {
  opacity: 1;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #131313;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  text-decoration: none;
  min-width: 200px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-download:active {
  transform: scale(0.97);
}

/* ── Legal pages (privacy.html, terms.html) ──────────────────────── */
.legal-prose h2 {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #111111;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-prose h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #222222;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-prose p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4b4b4b;
  margin-bottom: 1rem;
}
.legal-prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-prose ul li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4b4b4b;
  margin-bottom: 0.35rem;
}
.legal-prose a {
  color: #e50914;
  text-decoration: underline;
}
.legal-divider {
  border-color: rgba(0,0,0,0.1);
  margin: 2rem 0;
}

