:root{
  --bg:#000000;
  --accent:#F4C2C2;
  --text:#ffffff;
  --radius:18px;
  --max:1060px;
  --shadow:0 0 0 rgba(244,194,194,0);
}

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

a{color:inherit}

.page{
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.hero{
  padding:44px 18px 26px;
}
.hero__inner{
  max-width:var(--max);
  margin:0 auto;
  text-align:center;
}

.brand{
  color:var(--accent);
  letter-spacing:0.22em;
  text-transform:uppercase;
  font-weight:800;
  font-size:clamp(22px,4.4vw,44px);
  line-height:1.15;
}

.tagline{
  margin-top:12px;
  font-style:italic;
  color:var(--text);
  font-size:clamp(14px,2.4vw,18px);
  letter-spacing:0.02em;
}

.section{
  padding:12px 18px 40px;
}

.section__head{
  max-width:var(--max);
  margin:0 auto;
  text-align:center;
  padding:14px 0 22px;
}

.section__title{
  margin:0;
  color:var(--accent);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:0.14em;
  font-size:clamp(18px,3.2vw,26px);
}

.section__rule{
  width:92px;
  height:1px;
  margin:14px auto 0;
  background:var(--accent);
  opacity:0.9;
}

.cards{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  padding:8px 0 18px;
}

@media (min-width:700px){
  .cards{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
}

@media (min-width:1024px){
  .cards{gap:20px}
}

.card{
  background:rgba(0,0,0,1);
  border:1px solid var(--accent);
  border-radius:var(--radius);
  padding:20px 18px 18px;
  transition:box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
  box-shadow:var(--shadow);
  min-height:188px;
}

.card:hover{
  box-shadow:0 0 24px rgba(244,194,194,0.22);
  transform:translateY(-2px);
}

.card__icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(244,194,194,0.55);
  color:var(--accent);
  margin-bottom:14px;
}

.fa{
  display:block;
  width:28px;
  height:28px;
  background-color:currentColor;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
  -webkit-mask-size:contain;
  mask-size:contain;
}

.card__title{
  margin:0 0 12px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-weight:900;
  font-size:15px;
  line-height:1.25;
}

.card__details{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.label{
  color:var(--text);
  opacity:0.92;
  font-size:14px;
  line-height:1.35;
}

.price{
  color:var(--text);
  font-weight:900;
  font-size:18px;
  letter-spacing:0.01em;
  white-space:nowrap;
}

.cta{
  max-width:var(--max);
  margin:10px auto 0;
  display:flex;
  justify-content:center;
  padding:18px 0 20px;
}

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

.cta__btn:hover{
  background:var(--bg);
  color:var(--accent);
  border-color:var(--accent);
  transform:translateY(-1px);
  box-shadow:0 0 18px rgba(244,194,194,0.22);
}

.cta__btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(244,194,194,0.35), 0 0 18px rgba(244,194,194,0.2);
}

.footer{
  margin-top:auto;
  padding:16px 18px 22px;
}

.footer__text{
  text-align:center;
  color:var(--accent);
  font-size:12px;
  letter-spacing:0.04em;
}

.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity 700ms ease, transform 700ms ease;
  will-change:opacity, transform;
}

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

@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .card,.cta__btn{transition:none}
}
