* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #000000;
  font-family: 'Futura', 'Century Gothic', sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.08), transparent 34rem);
  z-index: -1;
}

.page-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 86px;
}

.brand-header {
  text-align: center;
  padding: 38px 0 30px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8a7600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
p,
ul {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 8vw, 5.8rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.header-line {
  display: block;
  width: min(220px, 48vw);
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.tagline {
  margin-bottom: 30px;
  font-size: clamp(1rem, 2.4vw, 1.26rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.66);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 30px 14px;
  border: 1px solid #ffd700;
  border-radius: 999px;
  background: #ffd700;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 14px 30px rgba(255, 215, 0, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-3px);
  background: #ffe45c;
  box-shadow: 0 18px 38px rgba(255, 215, 0, 0.34);
}

.cta-button:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

.intro {
  max-width: 780px;
  margin: 16px auto 58px;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(0, 0, 0, 0.74);
}

.policy-section {
  position: relative;
  padding: 54px 0 58px;
  border-top: 1px solid rgba(255, 215, 0, 0.62);
}

.policy-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(220px, 58%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.icon-wrap {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.88);
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.08);
  color: #ffd700;
}

.icon-wrap svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
}

.policy-list li {
  position: relative;
  padding-left: 30px;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.12);
}

.closing {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 0 0;
  text-align: center;
}

.closing p {
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-style: italic;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 28px, 980px);
    padding: 44px 0 112px;
  }

  .brand-header {
    padding: 24px 0 24px;
  }

  h1 {
    letter-spacing: 0.08em;
  }

  .intro {
    margin-bottom: 42px;
  }

  .policy-section {
    padding: 42px 0 46px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 26px;
  }

  .icon-wrap {
    width: 54px;
    height: 54px;
  }

  .policy-list {
    gap: 16px;
  }

  .policy-list li {
    padding-left: 26px;
  }

  .bottom-cta {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 10;
    width: auto;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18), 0 10px 24px rgba(255, 215, 0, 0.32);
  }
}

@media (max-width: 390px) {
  .cta-button {
    min-height: 50px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta-button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
