:root{
  --bg:#000000;
  --accent:#F4C2C2;
  --text:#ffffff;
  --muted:rgba(255,255,255,.82);
  --radius:18px;
  --border:1px solid rgba(244,194,194,.9);
  --shadow:0 0 0 rgba(244,194,194,0);
  --shadow-hover:0 0 28px rgba(244,194,194,.28);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Futura","Century Gothic",sans-serif;
  letter-spacing:.2px;
}

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

.container{
  width:min(1080px, calc(100% - 40px));
  margin-inline:auto;
}

.hero{
  padding:48px 0 26px;
}

.hero__inner{
  text-align:center;
}

.brand{
  margin:0;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:700;
  font-size:clamp(28px, 6vw, 46px);
  line-height:1.12;
}

.tagline{
  margin:14px 0 0;
  color:var(--text);
  font-style:italic;
  font-weight:400;
  font-size:clamp(14px, 2.4vw, 18px);
  opacity:.95;
}

.banner{
  background:var(--accent);
  color:#000000;
}

.banner__text{
  margin:0;
  padding:14px 0;
  text-align:center;
  font-weight:700;
  letter-spacing:.02em;
}

.pricing{
  padding:44px 0 52px;
}

.section-title{
  margin:0 0 22px;
  text-align:center;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--accent);
  font-size:14px;
}

.grid{
  display:grid;
  gap:18px;
  grid-template-columns:1fr;
}

@media (min-width:720px){
  .grid{grid-template-columns:repeat(2, 1fr); gap:20px}
}

@media (min-width:1024px){
  .grid{grid-template-columns:repeat(3, 1fr); gap:22px}
}

.card{
  background:var(--bg);
  border:var(--border);
  border-radius:var(--radius);
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  opacity:0;
  transform:translateY(12px);
}

.card:hover{
  box-shadow:var(--shadow-hover);
  transform:translateY(6px);
}

.card.is-visible{
  opacity:1;
  transform:translateY(0);
  transition:opacity .7s ease, transform .7s ease, box-shadow .25s ease, border-color .25s ease;
}

.card__icon{
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(244,194,194,.55);
}

.card__icon i{
  color:var(--accent);
  font-size:28px;
  line-height:1;
}

.card__title{
  margin:4px 0 0;
  color:var(--accent);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:14px;
}

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

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

.label{
  color:var(--muted);
  font-size:14px;
  line-height:1.3;
}

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

.note{
  margin:0;
  color:rgba(244,194,194,.95);
  font-size:12.5px;
  letter-spacing:.02em;
}

.sub{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.sub__title{
  color:rgba(255,255,255,.92);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

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

.divider{
  height:1px;
  background:rgba(244,194,194,.35);
  margin:6px 0;
}

.cta{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:var(--accent);
  color:#000000;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid transparent;
  transition:background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 24px rgba(244,194,194,.12);
}

.btn:hover{
  background:#000000;
  color:var(--accent);
  border-color:var(--accent);
  transform:translateY(-1px);
  box-shadow:0 0 28px rgba(244,194,194,.18);
}

.btn:focus-visible{
  outline:2px solid rgba(244,194,194,.85);
  outline-offset:3px;
}

.footer{
  padding:18px 0 26px;
}

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

@media (prefers-reduced-motion:reduce){
  .card, .card.is-visible, .btn, .card:hover{
    transition:none;
    transform:none;
  }
  .card{opacity:1}
}
