:root{
  --pinkOverlay: rgba(244,166,193,.12);
  --glass: rgba(255,255,255,.26);
  --glass2: rgba(255,255,255,.18);
  --btn: rgba(255,255,255,.22);
  --btnHover: rgba(255,255,255,.30);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);

  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --radius: 18px;
}

*{ box-sizing:border-box; }

html, body{
  height:100%;
}

body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  min-height:100vh;

  color: var(--text);

  /* IMPORTANT: keep the background image visible */
  background:
    linear-gradient(var(--pinkOverlay), var(--pinkOverlay)),
    url("assets/bg.jpg") center/cover no-repeat fixed;

  /* Helps iOS feel smoother */
  -webkit-text-size-adjust: 100%;
}

.wrap{
  max-width: 560px;
  margin: 0 auto;
  padding: 44px 18px 56px;
  text-align:center;
}

.logo{
  width: min(360px, 90%);
  height:auto;
  margin: 6px auto 10px;
  opacity:.60;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.10));
}

.tagline{
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 6px 0 14px;
}

.systemline{
  font-size: 14px;
  color: rgba(255,255,255,.78);
  margin: 0 0 22px;
  line-height:1.35;
}

h1{
  margin: 10px 0 6px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.card{
  background: var(--glass2);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 14px;
}

.back{
  display:none;
  width:100%;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
  color: var(--text);
  font-weight: 650;
}

.list{
  display:block;
}

.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding: 16px 14px;
  margin: 10px 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);
  background: var(--btn);
  color: var(--text);
  text-decoration:none;
  font-size: 17px;
  font-weight: 650;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  transition: transform .08s ease, background .15s ease;
}

.btn:active{ transform: scale(.99); }
.btn:hover{ background: var(--btnHover); }

.btn.disabled{
  opacity:.72;
  pointer-events:none;
  background: rgba(40,40,40,.20);
}

.btn.primary{
  background: rgba(255,255,255,.30);
  border-color: rgba(255,255,255,.28);
  font-weight: 750;
}

.icon{
  width: 20px;
  height: 20px;
  display:block;
}

.hidden{ display:none; }

.pricing{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.priceHeader{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  margin: 10px 0 12px;
}

.pill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  font-size: 12px;
  font-weight: 650;
}

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

.priceBox{
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.20);
  text-align:left;
}

.priceName{
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.priceBig{
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.priceNote{
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height:1.35;
}

.finePrint{
  font-size: 12px;
  color: rgba(255,255,255,.70);
  line-height: 1.4;
  margin: 12px 0 12px;
}

.footer{
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,.70);
}
