@font-face {
  font-family: "Figtree";
  src: url("./files/Figtree/Figtree-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("./files/Figtree/Figtree-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
  font-display: swap;
}

:root {
  --forest: #04231e;
  --emerald: #025a4e;
  --haze: #f7f4f3;
  --clay: #a79280;
  --white: #ffffff;
  --lilac: #d2c3e9;
  --grape: #875ae0;
}

* {
  box-sizing: border-box;
  font-family: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
}

.theme-light {
  background: radial-gradient(circle at 8% 0%, rgba(210, 195, 233, 0.36) 0%, rgba(210, 195, 233, 0) 34%),
    radial-gradient(circle at 96% 100%, rgba(135, 90, 224, 0.12) 0%, rgba(135, 90, 224, 0) 36%),
    var(--haze);
}

.orb {
  position: fixed;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

.orb-top {
  top: -8rem;
  right: -7rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(135, 90, 224, 0.24) 0%, rgba(135, 90, 224, 0) 70%);
}

.orb-bottom {
  bottom: -9rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(2, 90, 78, 0.17) 0%, rgba(2, 90, 78, 0) 70%);
}

.reveal {
  animation: reveal-up 520ms ease-out both;
}

.delay-1 {
  animation-delay: 80ms;
}

.delay-2 {
  animation-delay: 150ms;
}

.card-light {
  border-radius: 1.35rem;
  border: 1px solid rgba(4, 35, 30, 0.12);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(4, 35, 30, 0.06);
  padding: 1.5rem;
}

.section-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  color: var(--forest);
}

.section-copy {
  margin: 0.95rem 0 0;
  color: rgba(4, 35, 30, 0.82);
  line-height: 1.68;
}

.privacy-content {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(4, 35, 30, 0.12);
  color: rgba(4, 35, 30, 0.84);
}

.privacy-content h2,
.privacy-content h3,
.privacy-content h4 {
  margin: 1.25rem 0 0;
  color: var(--forest);
  line-height: 1.28;
  font-weight: 620;
}

.privacy-content h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.privacy-content h3 {
  font-size: 1.03rem;
}

.privacy-content h4 {
  font-size: 0.98rem;
}

.privacy-content p {
  margin: 0.68rem 0 0;
  line-height: 1.7;
}

.privacy-content ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.privacy-content li + li {
  margin-top: 0.48rem;
}

.privacy-summary-title {
  margin: 1.4rem 0 0;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--forest);
}

a {
  color: var(--emerald);
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}

a:hover,
a:focus-visible {
  color: var(--grape);
}

strong {
  color: var(--forest);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .card-light {
    padding: 1.2rem;
  }

  .orb-top {
    width: 14rem;
    height: 14rem;
  }

  .orb-bottom {
    width: 16rem;
    height: 16rem;
  }
}
