:root{
  --bg:#000000;
  --accent:#F4C2C2;
  --white:#ffffff;
  --maxw:750px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:Futura,"Century Gothic",sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.page{min-height:100%}

.hero{
  padding:48px 18px 18px;
  display:flex;
  justify-content:center;
}
.hero-inner{
  width:100%;
  max-width:var(--maxw);
  text-align:center;
}
.brand{
  color:var(--accent);
  font-weight:800;
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-size:clamp(28px,6.3vw,44px);
  line-height:1.15;
}
.tagline{
  margin-top:12px;
  color:var(--white);
  font-style:italic;
  font-size:clamp(14px,3.2vw,18px);
  opacity:0.95;
}

.section{padding:26px 18px 44px}
.container{width:100%;max-width:var(--maxw);margin:0 auto}

.section-title{
  margin:22px 0 10px;
  text-align:center;
  color:var(--accent);
  font-weight:800;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-size:clamp(20px,4.6vw,28px);
}

.title-rule{
  width:92px;
  height:1px;
  background:rgba(244,194,194,0.85);
  margin:0 auto 22px;
}

.policy-list{
  list-style:none;
  margin:0;
  padding:0;
  border-top:0.5px solid rgba(244,194,194,0.20);
}

.policy-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:18px 4px;
  border-bottom:0.5px solid rgba(244,194,194,0.20);
  opacity:0;
  transform:translateY(10px);
  transition:opacity 700ms ease, transform 700ms ease;
}

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

.icon{
  width:28px;
  flex:0 0 28px;
  display:flex;
  justify-content:center;
  padding-top:2px;
}
.icon i{
  color:var(--accent);
  font-size:20px;
  line-height:1;
}

.text{
  color:var(--white);
  font-size:16px;
  line-height:1.65;
}

.num{
  color:var(--accent);
  font-weight:800;
  margin-right:8px;
}

.em{
  color:var(--accent);
  font-weight:800;
}

.closing{
  margin-top:30px;
  text-align:center;
  color:var(--accent);
  font-style:italic;
  font-size:clamp(16px,3.6vw,18px);
  opacity:0;
  transform:translateY(10px);
  transition:opacity 700ms ease, transform 700ms ease;
}

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

.cta-wrap{
  margin-top:18px;
  display:flex;
  justify-content:center;
  opacity:0;
  transform:translateY(10px);
  transition:opacity 700ms ease, transform 700ms ease;
}

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

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:var(--accent);
  color:var(--bg);
  font-weight:900;
  letter-spacing:0.14em;
  text-transform:uppercase;
  padding:14px 22px;
  border-radius:999px;
  border:2px solid transparent;
  transition:background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.cta:focus-visible{
  outline:2px solid rgba(244,194,194,0.75);
  outline-offset:4px;
}

.cta:hover{
  background:var(--bg);
  color:var(--accent);
  border-color:var(--accent);
  transform:translateY(-1px);
}

.footer{margin-top:28px;padding-top:10px}
.footer-text{
  text-align:center;
  color:rgba(244,194,194,0.92);
  font-size:12px;
  letter-spacing:0.02em;
}

@media (min-width:700px){
  .hero{padding-top:58px}
  .policy-row{padding:20px 6px}
  .text{font-size:16.5px}
}

@media (prefers-reduced-motion:reduce){
  .policy-row,.closing,.cta-wrap{transition:none;transform:none}
  .policy-row,.closing,.cta-wrap{opacity:1}
}
