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

body {
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  background: #0f0f13;
  color: #f0ede9;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

:root {
  --charcoal: #0f0f13;
  --graphite: #171b23;
  --steel: #6b8a99;
  --off-white: #f0ede9;
  --copper: #b87333;
  --copper-soft: #d59a65;
  --panel-border: rgba(107, 138, 153, 0.16);
  --panel-border-strong: rgba(184, 115, 51, 0.18);
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 20px 56px rgba(0, 0, 0, 0.32);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  padding: 11rem 0 4rem;
  background: linear-gradient(180deg, #0f0f13 0%, #141922 55%, #0a0d14 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(107, 138, 153, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(107, 138, 153, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-copper {
  top: -8rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18), transparent 68%);
}

.hero-glow-steel {
  bottom: -14rem;
  left: -8rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(107, 138, 153, 0.14), transparent 72%);
}

.policy-hero__inner {
  position: relative;
  z-index: 1;
}

.policy-hero__copy {
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--copper-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.65rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.lead {
  margin: 0 0 1rem;
  max-width: 42rem;
  color: #bccad2;
  font-size: 1.08rem;
  line-height: 1.7;
}

.policy-updated {
  margin: 0;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 600;
}

.policy-body {
  padding: 0 0 5rem;
}

.policy-shell {
  position: relative;
  margin-top: -1rem;
  padding: 2rem;
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(23, 27, 35, 0.96), rgba(12, 16, 23, 0.92));
  box-shadow: var(--shadow-lg);
}

.policy-intro {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(107, 138, 153, 0.12);
}

.policy-intro p,
.policy-section p,
.policy-section li {
  color: #c5d2d9;
  font-size: 1rem;
  line-height: 1.8;
}

.policy-section + .policy-section {
  margin-top: 2rem;
}

.policy-section h2 {
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
  line-height: 1.25;
}

.policy-section h3 {
  margin: 1.15rem 0 0.55rem;
  color: var(--off-white);
  font-size: 1.02rem;
  line-height: 1.35;
}

.policy-section ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
}

.policy-section li + li {
  margin-top: 0.65rem;
}

.policy-section--contact {
  padding: 1.4rem;
  border: 1px solid var(--panel-border-strong);
  border-radius: 16px;
  background: rgba(16, 20, 28, 0.76);
}

.policy-contact {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.policy-contact a {
  color: var(--off-white);
  font-weight: 600;
}

.policy-contact a:hover {
  color: var(--copper-soft);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0d14 0%, #0d1118 42%, #080b11 100%);
  border-top: 1px solid rgba(184, 115, 51, 0.22);
  padding-top: 2rem;
  padding-bottom: 1.4rem;
}

.footer-glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), var(--steel), transparent);
  opacity: 0.55;
}

.footer-inner {
  padding-top: 1.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-brand h2 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.footer-brand p,
.footer-group li,
.footer-group a,
.footer-bottom p {
  color: #bfcbd2;
}

.footer-support {
  max-width: 22rem;
}

.footer-title {
  margin: 0 0 0.75rem;
  color: var(--off-white);
  font-weight: 700;
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-group a:hover {
  color: var(--copper-soft);
}

.footer-contact {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 138, 153, 0.16);
  border-radius: 999px;
  background: rgba(15, 18, 24, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  color: var(--copper-soft);
  border-color: rgba(184, 115, 51, 0.34);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(107, 138, 153, 0.12);
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .policy-hero {
    padding-top: 9rem;
  }

  .policy-shell {
    padding: 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .lead,
  .policy-intro p,
  .policy-section p,
  .policy-section li {
    font-size: 0.96rem;
  }
}
